:root {
  --white: #ffffff;
  --blue-bg: #e7f4ff;
  --blue-soft: #d5ecff;
  --blue-main: #77b4e4;
  --blue-strong: #4d97d2;
  --blue-deep: #31597a;
  --mint-soft: #46f0a2;
  --mint-strong: #00c96b;
  --text: #2c5577;
  --muted: #6f8fa8;
  --line: #cfe4f4;
  --surface: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 24px 54px rgba(77, 151, 210, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
}

/* 2026 redesign layer */

.redesign-shell {
  --white: #ffffff;
  --blue-bg: #f3f8fc;
  --blue-soft: #e4f1fb;
  --blue-main: #4ea7e0;
  --blue-strong: #1e80c2;
  --blue-deep: #133a5b;
  --mint-soft: #abf1df;
  --mint-strong: #27bf92;
  --text: #18324a;
  --muted: #60778e;
  --line: #d7e7f2;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow-soft: 0 24px 48px rgba(20, 72, 111, 0.08);
  background:
    radial-gradient(circle at top left, rgba(154, 218, 255, 0.5), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(109, 186, 239, 0.2), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #eff7fd 34%, #f8fbfe 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.redesign-shell h1,
.redesign-shell h2,
.redesign-shell h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.redesign-shell .brand-title,
.redesign-shell .site-nav-brand-text,
.redesign-shell .footer-brand-kicker {
  letter-spacing: 0.12em;
}

.redesign-shell .container {
  width: min(1180px, 92%);
}

.redesign-shell .section {
  padding: clamp(4.5rem, 7vw, 7.5rem) 0;
}

.redesign-shell .ambient-top {
  width: 70rem;
  height: 38rem;
  top: -12rem;
  background: radial-gradient(circle, rgba(89, 181, 244, 0.26), rgba(89, 181, 244, 0));
}

.redesign-shell .site-nav-shell {
  width: min(1180px, calc(100% - 1rem));
}

.redesign-shell .site-nav {
  padding: 0.72rem 0.9rem;
  border-radius: 24px;
  border-color: rgba(212, 233, 248, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.88));
  box-shadow: 0 18px 40px rgba(27, 84, 129, 0.1);
}

.redesign-shell .site-nav-brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 18px;
  box-shadow:
    0 0 0 10px rgba(89, 181, 244, 0.1),
    0 16px 26px rgba(28, 99, 149, 0.14);
}

.redesign-shell .site-nav-brand-text {
  font-size: 0.86rem;
  font-weight: 800;
}

.redesign-shell .nav-menu {
  gap: 0.3rem;
}

.redesign-shell .nav-link,
.redesign-shell .nav-dropdown-trigger,
.redesign-shell .nav-submenu-link {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.redesign-shell .nav-link,
.redesign-shell .nav-dropdown-trigger {
  padding: 0.74rem 0.92rem;
}

.redesign-shell .nav-link:hover,
.redesign-shell .nav-dropdown-trigger:hover,
.redesign-shell .nav-link-current,
.redesign-shell .nav-dropdown-current .nav-dropdown-trigger {
  background: linear-gradient(135deg, rgba(89, 181, 244, 0.16), rgba(89, 181, 244, 0.05));
  box-shadow: inset 0 0 0 1px rgba(89, 181, 244, 0.16);
}

.redesign-shell .nav-search-trigger {
  order: 2;
  margin-left: auto;
  padding: 0.74rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 226, 245, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.88));
  box-shadow: 0 16px 30px rgba(36, 103, 149, 0.08);
}

.redesign-shell .nav-toggle {
  order: 3;
}

.redesign-shell .nav-search-trigger-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(89, 181, 244, 0.16), rgba(89, 181, 244, 0.07));
  color: var(--blue-deep);
}

.redesign-shell .nav-search-trigger-text {
  color: var(--text);
}

.redesign-shell .nav-dropdown-menu {
  border-radius: 24px;
  padding: 0.6rem;
  border: 1px solid rgba(207, 227, 243, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 46px rgba(17, 58, 89, 0.15);
}

.redesign-shell .site-search-panel {
  width: min(920px, calc(100% - 1.2rem));
  min-height: min(40rem, 86vh);
  border-radius: 30px;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.95));
  box-shadow: 0 40px 80px rgba(14, 55, 86, 0.2);
}

.redesign-shell .site-search-panel-head {
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.redesign-shell .site-search-close,
.redesign-shell .site-search-field,
.redesign-shell .site-search-result-card,
.redesign-shell .site-search-empty {
  border-radius: 28px;
}

.redesign-shell .site-search-field {
  min-height: 5.2rem;
  padding: 0.65rem 0.9rem 0.65rem 1.1rem;
  border-color: rgba(206, 228, 244, 0.95);
}

.redesign-shell .site-search-field input {
  font-size: 1rem;
  font-weight: 600;
}

.redesign-shell .site-search-result-card {
  border: 1px solid rgba(206, 228, 244, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 255, 0.9));
  box-shadow: 0 14px 28px rgba(21, 72, 110, 0.06);
}

.redesign-shell .hero {
  padding-top: clamp(8.5rem, 12vw, 10rem);
}

.redesign-shell .hero-inner {
  position: relative;
}

.redesign-shell .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.1rem, 2.6vw, 1.8rem);
  align-items: stretch;
}

.redesign-shell .hero-copy-shell {
  position: relative;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid rgba(212, 233, 248, 0.95);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.88));
  box-shadow: 0 24px 52px rgba(17, 62, 95, 0.1);
  overflow: hidden;
}

.redesign-shell .hero-copy-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 55%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 181, 244, 0.18), rgba(89, 181, 244, 0));
  pointer-events: none;
}

.redesign-shell .coming-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 226, 247, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.redesign-shell .brand-lockup {
  margin-top: 1.4rem;
}

.redesign-shell .brand-title-main {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--blue-deep);
}

.redesign-shell .brand-title-sub {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.redesign-shell h1 {
  max-width: 12ch;
  margin-top: 1.25rem;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.95;
}

.redesign-shell .hero-lead {
  max-width: 38rem;
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
}

.redesign-shell .hero-actions {
  margin-top: 1.8rem;
  gap: 0.95rem;
}

.redesign-shell .button,
.redesign-shell .call-button,
.redesign-shell .contacts-cta,
.redesign-shell .footer-pill {
  min-height: 3.75rem;
  border-radius: 999px;
  font-weight: 800;
}

.redesign-shell .button-gold,
.redesign-shell .footer-pill-primary {
  background: linear-gradient(135deg, var(--blue-deep), #1b4f80);
  color: #fff;
  box-shadow: 0 18px 36px rgba(18, 56, 93, 0.22);
}

.redesign-shell .button-gold:hover,
.redesign-shell .footer-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(18, 56, 93, 0.28);
}

.redesign-shell .footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.redesign-shell .footer-pill-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.redesign-shell .call-button-primary {
  min-width: 20rem;
  padding-right: 1.25rem;
  background: linear-gradient(135deg, #ffffff, rgba(240, 249, 255, 0.95));
  border: 1px solid rgba(206, 228, 244, 0.95);
  box-shadow: 0 18px 34px rgba(21, 72, 110, 0.08);
}

.redesign-shell .call-button-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
}

.redesign-shell .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.redesign-shell .hero-metric-card {
  padding: 0.95rem 1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(206, 228, 244, 0.95);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 32px rgba(18, 56, 93, 0.06);
}

.redesign-shell .hero-metric-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redesign-shell .hero-metric-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.redesign-shell .hero-showcase {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.9rem;
}

.redesign-shell .hero-showcase-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(210, 232, 246, 0.9);
  box-shadow: 0 22px 40px rgba(18, 56, 93, 0.08);
}

.redesign-shell .hero-showcase-card-primary {
  min-height: 20rem;
  background:
    radial-gradient(circle at top right, rgba(116, 201, 255, 0.4), transparent 25%),
    linear-gradient(180deg, #13395f 0%, #1b5a8e 100%);
  color: #fff;
}

.redesign-shell .hero-showcase-card-soft {
  min-height: 9.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.9));
}

.redesign-shell .hero-showcase-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.redesign-shell .hero-showcase-kicker {
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redesign-shell .hero-showcase-card h3 {
  max-width: 14ch;
  font-size: clamp(1.28rem, 1.8vw, 1.86rem);
  line-height: 1.05;
}

.redesign-shell .hero-showcase-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.2rem;
}

.redesign-shell .hero-showcase-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.redesign-shell .hero-showcase-item-dot {
  width: 0.6rem;
  height: 0.6rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #7fd7ff;
  box-shadow: 0 0 0 6px rgba(127, 215, 255, 0.16);
}

.redesign-shell .hero-showcase-note {
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.redesign-shell .hero-showcase-note span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

.redesign-shell .hero-showcase-note strong {
  font-size: 0.96rem;
}

.redesign-shell .section-heading {
  display: block;
  margin-bottom: 1.7rem;
}

.redesign-shell .section-heading h2 {
  max-width: 14ch;
  margin-top: 0.35rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.redesign-shell .section-kicker {
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.redesign-shell .surface-card,
.redesign-shell .prices-results-head,
.redesign-shell .prices-empty-state,
.redesign-shell .price-card,
.redesign-shell .service-card,
.redesign-shell .doctor-card,
.redesign-shell .contact-highlight-card,
.redesign-shell .contact-floating-card {
  border: 1px solid rgba(210, 232, 246, 0.95);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 255, 0.86));
  box-shadow: 0 16px 34px rgba(18, 56, 93, 0.07);
}

.redesign-shell .surface-card p {
  color: var(--muted);
}

.redesign-shell .about-grid,
.redesign-shell .doctors-grid,
.redesign-shell .services-grid {
  gap: 1rem;
}

.redesign-shell .about-card,
.redesign-shell .doctor-card,
.redesign-shell .service-card,
.redesign-shell .contact-highlight-card {
  padding: 1.35rem;
}

.redesign-shell .doctor-card h3,
.redesign-shell .service-card h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.redesign-shell .doctor-card {
  min-height: 15rem;
}

.redesign-shell .doctor-role {
  margin-bottom: 0.9rem;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redesign-shell .service-card-link {
  padding: 1.25rem;
  gap: 1.1rem;
  min-height: 14rem;
  justify-content: flex-start;
}

.redesign-shell .service-card-orbit {
  width: 5.2rem;
  height: 5.2rem;
  padding: 0.4rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(89, 181, 244, 0.15), rgba(89, 181, 244, 0.04));
}

.redesign-shell .service-card-link .service-icon {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 255, 0.9));
  box-shadow: inset 0 0 0 1px rgba(204, 227, 243, 0.95);
}

.redesign-shell .service-card-link .service-icon::before,
.redesign-shell .service-card-link .service-icon::after {
  display: none;
}

.redesign-shell .service-card-link .service-icon-file {
  width: 1.8rem;
  height: 1.8rem;
}

.redesign-shell .service-card-link h3 {
  max-width: 12ch;
  margin-top: auto;
}

.redesign-shell .service-card-link::after {
  right: 1.25rem;
  bottom: 1.2rem;
  content: "→";
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-strong);
  opacity: 1;
  transform: none;
}

.redesign-shell .service-card-link:hover {
  transform: translateY(-4px);
}

.redesign-shell .service-card-link:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(204, 227, 243, 0.95),
    0 16px 28px rgba(89, 181, 244, 0.18);
}

.redesign-shell .service-page-intro,
.redesign-shell .prices-hero-card,
.redesign-shell .contacts-hero-card,
.redesign-shell .tooth-map-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 30px;
}

.redesign-shell .service-page-intro::before,
.redesign-shell .prices-hero-card::before,
.redesign-shell .contacts-hero-card::before,
.redesign-shell .tooth-map-intro::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 181, 244, 0.2), rgba(89, 181, 244, 0));
  pointer-events: none;
}

.redesign-shell .service-page-title,
.redesign-shell .prices-hero-card h1,
.redesign-shell .contacts-hero-card h1 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.redesign-shell .service-page-intro .hero-lead,
.redesign-shell .prices-hero-card .hero-lead,
.redesign-shell .contacts-hero-card .hero-lead,
.redesign-shell .tooth-map-intro .hero-lead {
  max-width: 42rem;
}

.redesign-shell .service-chip,
.redesign-shell .price-chip,
.redesign-shell .tooth-problem-chip {
  border-radius: 999px;
  font-weight: 700;
}

.redesign-shell .prices-page-layout,
.redesign-shell .prices-calculator-shell,
.redesign-shell .contacts-page-layout,
.redesign-shell .tooth-map-shell {
  gap: 1.2rem;
}

.redesign-shell .prices-toolbar,
.redesign-shell .prices-results-shell,
.redesign-shell .calculator-panel,
.redesign-shell .tooth-map-card {
  border-radius: 30px;
}

.redesign-shell .prices-input,
.redesign-shell .prices-select {
  min-height: 3.6rem;
  border-radius: 18px;
  border-color: rgba(206, 228, 244, 0.95);
}

.redesign-shell .price-card {
  min-height: 10rem;
  padding: 1.1rem;
}

.redesign-shell .price-card-title {
  font-size: 1.14rem;
  line-height: 1.35;
}

.redesign-shell .calculator-panel-builder,
.redesign-shell .calculator-panel-summary {
  border-radius: 34px;
}

.redesign-shell .calculator-suggestion-card,
.redesign-shell .calculator-selection-item,
.redesign-shell .calculator-stat-card {
  border-radius: 24px;
}

.redesign-shell .contact-grid {
  grid-template-columns: minmax(0, 1fr);
}

.redesign-shell .info-card,
.redesign-shell .contact-floating-card,
.redesign-shell .contact-highlight-card {
  border-radius: 30px;
}

.redesign-shell .contact-item {
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(209, 231, 246, 0.92);
}

.redesign-shell .contact-item-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 18px;
}

.redesign-shell .footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 0 0 1.3rem;
  background: transparent;
}

.redesign-shell .footer-inner {
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border-radius: 32px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at top right, rgba(89, 181, 244, 0.22), transparent 24%),
    linear-gradient(135deg, #0d2a44 0%, #11385b 48%, #0e436a 100%);
  box-shadow: 0 30px 70px rgba(6, 27, 45, 0.24);
}

.redesign-shell .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.redesign-shell .footer-brand-block {
  max-width: 34rem;
}

.redesign-shell .footer-brand-kicker {
  color: rgba(188, 229, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
}

.redesign-shell .footer-brand {
  margin-top: 0.9rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  font-weight: 800;
}

.redesign-shell .footer-tagline {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(220, 237, 248, 0.82);
}

.redesign-shell .footer-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.redesign-shell .footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.redesign-shell .footer-column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.redesign-shell .footer-column-title {
  margin-bottom: 0.35rem;
  color: rgba(188, 229, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.redesign-shell .footer-column a,
.redesign-shell .footer-column span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.55;
}

.redesign-shell .footer-column a:hover {
  color: #fff;
}

.redesign-shell .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
}

.redesign-shell .copyright,
.redesign-shell .footer-meta-note {
  color: rgba(205, 229, 244, 0.7);
}

@media (max-width: 1100px) {
  .redesign-shell .hero-grid,
  .redesign-shell .footer-top,
  .redesign-shell .prices-page-layout,
  .redesign-shell .prices-calculator-shell,
  .redesign-shell .contacts-page-layout,
  .redesign-shell .tooth-map-shell {
    grid-template-columns: 1fr;
  }

  .redesign-shell .hero-showcase-card-primary {
    min-height: 16rem;
  }

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

@media (max-width: 900px) {
  .redesign-shell .site-nav {
    gap: 0.6rem;
  }

  .redesign-shell .nav-search-trigger {
    margin-left: 0;
  }

  .redesign-shell .hero-metrics {
    grid-template-columns: 1fr;
  }

  .redesign-shell .hero-showcase-stack {
    grid-template-columns: 1fr;
  }

  .redesign-shell .section-heading {
    margin-bottom: 1.35rem;
  }

  .redesign-shell .section-heading h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .redesign-shell h1,
  .redesign-shell .service-page-title,
  .redesign-shell .prices-hero-card h1,
  .redesign-shell .contacts-hero-card h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .redesign-shell .hero-copy-shell,
  .redesign-shell .service-page-intro,
  .redesign-shell .prices-hero-card,
  .redesign-shell .contacts-hero-card,
  .redesign-shell .tooth-map-intro,
  .redesign-shell .footer-inner {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .redesign-shell .site-search-panel {
    padding: 1rem;
    border-radius: 28px;
  }

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

  .redesign-shell .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .redesign-shell .service-card-link {
    min-height: 12.2rem;
  }

  .redesign-shell .service-card-link h3,
  .redesign-shell .doctor-card h3 {
    font-size: 1.08rem;
  }
}

@media (max-width: 520px) {
  .redesign-shell .container {
    width: min(100% - 1rem, 100%);
  }

  .redesign-shell .site-nav-shell {
    width: calc(100% - 0.8rem);
  }

  .redesign-shell .nav-search-trigger {
    padding: 0.7rem;
  }

  .redesign-shell .nav-search-trigger-text {
    display: none;
  }

  .redesign-shell .call-button-primary {
    min-width: 100%;
  }

  .redesign-shell .hero-showcase-card-primary,
  .redesign-shell .hero-showcase-card-soft {
    min-height: auto;
  }

  .redesign-shell .footer-brand {
    font-size: 1.7rem;
  }
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./fonts/CormorantGaramond-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(160, 208, 244, 0.5), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(187, 226, 251, 0.6), transparent 22%),
    linear-gradient(180deg, #f4fbff 0%, #e8f5ff 46%, #f9fcff 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  animation: pageEnter 0.48s ease both;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.ambient-top {
  top: -10rem;
  left: 50%;
  width: 56rem;
  height: 34rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(119, 180, 228, 0.24), rgba(119, 180, 228, 0));
}

.container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.section {
  padding: clamp(3.4rem, 8vw, 7rem) 0;
}

.site-nav-shell {
  position: fixed;
  top: clamp(12px, 2vw, 22px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 1.4rem));
  z-index: 20;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 250, 255, 0.68));
  box-shadow: 0 14px 34px rgba(77, 151, 210, 0.14);
  backdrop-filter: blur(18px);
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue-deep);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  position: relative;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 233, 0.88));
  border: 1px solid rgba(207, 228, 244, 0.92);
  box-shadow:
    0 0 0 8px rgba(119, 180, 228, 0.12),
    0 10px 22px rgba(77, 151, 210, 0.14);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.site-nav-brand-tooth {
  width: 1.26rem;
  height: 1.26rem;
  position: relative;
  z-index: 2;
}

.site-nav-brand-tooth .tooth-outline {
  fill: none;
  stroke: var(--blue-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease, filter 0.28s ease;
  stroke-width: 1.7;
}

.site-nav-brand-mark::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.site-nav-brand-mark::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.28s ease;
  z-index: -1;
}

.site-nav-brand-sparkle {
  position: absolute;
  top: 0.38rem;
  right: 0.38rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.7;
  transform: scale(0.8);
  z-index: 2;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}

.site-nav-brand-sparkle::before,
.site-nav-brand-sparkle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.site-nav-brand-sparkle::before {
  width: 0.52rem;
  height: 1px;
}

.site-nav-brand-sparkle::after {
  width: 1px;
  height: 0.52rem;
}

.site-nav-brand:hover .site-nav-brand-mark {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(173, 215, 246, 0.46);
  background: rgba(119, 180, 228, 0.18);
  box-shadow:
    0 0 0 10px rgba(119, 180, 228, 0.1),
    0 14px 30px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.site-nav-brand:hover .site-nav-brand-tooth .tooth-outline {
  stroke: var(--blue-deep);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.34));
}

.site-nav-brand:hover .site-nav-brand-mark::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav-brand:hover .site-nav-brand-mark::after {
  opacity: 1;
  transform: rotate(16deg) translateX(330%);
}

.site-nav-brand:hover .site-nav-brand-sparkle {
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 16px rgba(173, 215, 246, 0.46);
}

.site-nav-brand-text {
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-search-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: 0.68rem;
  min-height: 2.75rem;
  padding: 0.72rem 0.9rem 0.72rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.88));
  box-shadow:
    0 14px 30px rgba(77, 151, 210, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--blue-deep);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.24s ease,
    box-shadow 0.28s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.nav-search-trigger::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 42%, rgba(255, 255, 255, 0.68), transparent 30%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.24));
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.nav-search-trigger::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -38%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.28s ease;
  z-index: -1;
}

.nav-search-trigger:hover,
.nav-search-trigger[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: rgba(173, 215, 246, 0.46);
  background: rgba(119, 180, 228, 0.18);
  box-shadow:
    0 14px 30px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.nav-search-trigger:hover::before,
.nav-search-trigger[aria-expanded="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.nav-search-trigger:hover::after,
.nav-search-trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: rotate(16deg) translateX(340%);
}

.nav-search-trigger-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(119, 180, 228, 0.18), rgba(77, 151, 210, 0.24));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.nav-search-trigger-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-search-trigger-text {
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--blue-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.28s ease,
    text-shadow 0.28s ease;
}

.nav-link::before,
.nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.nav-link::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.28s ease;
  z-index: -1;
}

.nav-link:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--blue-deep);
  background: rgba(119, 180, 228, 0.18);
  box-shadow:
    0 14px 30px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-dropdown-trigger:hover::before,
.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before,
.nav-dropdown.is-open .nav-dropdown-trigger::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  opacity: 1;
  transform: rotate(16deg) translateX(330%);
}

.nav-link-current,
.nav-dropdown-current .nav-dropdown-trigger {
  background: rgba(119, 180, 228, 0.14);
  color: var(--blue-strong);
}

.nav-link-current::before,
.nav-dropdown-current .nav-dropdown-trigger::before {
  opacity: 1;
  transform: scale(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.85rem;
}

.nav-dropdown-toggle {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(207, 228, 244, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 255, 0.84));
  color: var(--blue-deep);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(77, 151, 210, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.nav-submenu-link-current {
  background: rgba(119, 180, 228, 0.14);
  color: var(--blue-strong);
}

.nav-submenu-link-current::before {
  opacity: 1;
  transform: scale(1);
}

.nav-dropdown-toggle span {
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  min-width: 15.5rem;
  display: grid;
  gap: 0.45rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.92));
  box-shadow: 0 18px 40px rgba(77, 151, 210, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 25;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown.is-open .nav-dropdown-toggle span,
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span {
  transform: rotate(225deg) translateY(1px);
}

.nav-submenu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  color: var(--blue-deep);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  background: rgba(119, 180, 228, 0.06);
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.28s ease,
    text-shadow 0.28s ease;
}

.nav-submenu-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.nav-submenu-link::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.28s ease;
  z-index: -1;
}

.nav-submenu-link:hover {
  color: var(--blue-deep);
  background: rgba(119, 180, 228, 0.18);
  box-shadow:
    0 14px 30px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.nav-submenu-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-submenu-link:hover::after {
  opacity: 1;
  transform: rotate(16deg) translateX(330%);
}

.nav-toggle {
  display: none;
  min-width: 7.2rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 255, 0.84));
  color: var(--blue-deep);
  padding: 0.28rem 0.34rem 0.28rem 0.9rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 10px 24px rgba(77, 151, 210, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.nav-toggle-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-deep);
}

.nav-toggle-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(207, 228, 244, 0.92);
  background: linear-gradient(135deg, rgba(119, 180, 228, 0.18), rgba(255, 255, 255, 0.94));
}

.nav-toggle-icon span {
  position: absolute;
  display: block;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease, width 0.24s ease;
}

.nav-toggle-icon span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle-icon span:nth-child(2) {
  width: 1.05rem;
}

.nav-toggle-icon span:nth-child(3) {
  transform: translateY(5px);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--blue-soft);
  box-shadow: 0 14px 28px rgba(77, 151, 210, 0.18);
}

body.nav-open .nav-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 255, 0.92));
}

body.nav-open .nav-toggle-icon span:nth-child(1) {
  transform: rotate(45deg);
}

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

body.nav-open .nav-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-search-shell {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(234, 244, 251, 0.72), rgba(234, 244, 251, 0.88)),
    radial-gradient(circle at top, rgba(119, 180, 228, 0.16), transparent 42%);
  backdrop-filter: blur(12px);
}

.site-search-panel {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  width: min(44rem, calc(100vw - 2rem));
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.94)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 34%);
  box-shadow:
    0 32px 80px rgba(49, 89, 122, 0.18),
    0 10px 24px rgba(77, 151, 210, 0.1);
  backdrop-filter: blur(22px);
  transform: translateX(-50%) translateY(-0.65rem) scale(0.98);
  opacity: 0;
  animation: search-panel-in 0.24s ease forwards;
}

@keyframes search-panel-in {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.site-search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.site-search-close {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(207, 228, 244, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 255, 0.84));
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(77, 151, 210, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-search-close:hover {
  transform: translateY(-2px) rotate(6deg);
  border-color: rgba(173, 215, 246, 0.46);
  box-shadow: 0 14px 30px rgba(77, 151, 210, 0.14);
}

.site-search-close span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-search-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-search-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4rem;
  padding: 0.9rem 1rem 0.9rem 1.1rem;
  border: 1px solid rgba(207, 228, 244, 0.94);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.site-search-field:focus-within {
  border-color: rgba(119, 180, 228, 0.62);
  box-shadow:
    0 0 0 4px rgba(119, 180, 228, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.site-search-field-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(119, 180, 228, 0.18), rgba(77, 151, 210, 0.24));
  color: var(--blue-deep);
}

.site-search-field-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search-field input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-deep);
  font: inherit;
  font-size: 1rem;
  outline: 0;
}

.site-search-field input::placeholder {
  color: rgba(49, 89, 122, 0.54);
}

.site-search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.95rem 0 1.15rem;
}

.site-search-meta p,
.site-search-hint {
  margin: 0;
}

.site-search-hint {
  color: rgba(49, 89, 122, 0.72);
  font-size: 0.84rem;
}

.site-search-results {
  display: grid;
  gap: 0.8rem;
  max-height: min(60vh, 34rem);
  overflow: auto;
  padding-right: 0.25rem;
}

.site-search-result-card,
.site-search-empty {
  position: relative;
  display: grid;
  gap: 0.72rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.94);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.18), transparent 36%);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(6px);
  animation: search-result-in 0.28s ease forwards;
  animation-delay: var(--delay, 0s);
  transition:
    transform 0.24s ease,
    box-shadow 0.28s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.site-search-result-card::before {
  content: "";
  position: absolute;
  top: -34%;
  bottom: -34%;
  left: -34%;
  width: 28%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.28s ease;
}

.site-search-result-card:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 215, 246, 0.46);
  box-shadow:
    0 20px 34px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.36);
  background: rgba(119, 180, 228, 0.14);
}

.site-search-result-card:hover::before {
  opacity: 1;
  transform: rotate(16deg) translateX(360%);
}

@keyframes search-result-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-search-result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-search-result-category {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-result-price {
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.site-search-result-title,
.site-search-empty h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.45;
}

.site-search-result-title mark {
  padding: 0 0.22rem;
  border-radius: 8px;
  background: rgba(119, 180, 228, 0.2);
  color: inherit;
}

.site-search-result-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-search-result-action::after {
  content: "↗";
  font-size: 0.9rem;
  transition: transform 0.24s ease;
}

.site-search-result-card:hover .site-search-result-action::after {
  transform: translate(2px, -2px);
}

.site-search-empty {
  padding: 1.3rem;
}

.site-search-empty p {
  margin: 0;
  color: rgba(49, 89, 122, 0.78);
}

body.search-open {
  overflow: hidden;
}

.hero {
  padding-top: clamp(6.2rem, 14vw, 9.2rem);
  position: relative;
}

.service-page-hero {
  padding-top: clamp(7.2rem, 14vw, 10.2rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.service-page-intro {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.service-page-intro .service-page-title {
  margin: 0;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.service-page-intro .hero-lead {
  margin: 0;
  max-width: 58ch;
}

.service-page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 228, 244, 0.94);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  text-decoration: none;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(119, 180, 228, 0.56);
  box-shadow: 0 16px 30px rgba(77, 151, 210, 0.14);
}

.prices-page-hero {
  padding-top: clamp(7.2rem, 14vw, 10.2rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.prices-hero-card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
}

.prices-hero-card h1 {
  margin: 0;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
  font-size: clamp(2.05rem, 5.2vw, 3.55rem);
  line-height: 1.05;
}

.prices-hero-card .hero-lead {
  margin: 0;
  max-width: 58ch;
}

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

.prices-stat-pill {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.prices-stat-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prices-stat-pill strong {
  color: var(--blue-deep);
  font-size: 1.06rem;
}

.prices-calculator-section {
  padding-top: 1.2rem;
}

.prices-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1rem;
  align-items: start;
}

.calculator-panel {
  display: grid;
  gap: 1.15rem;
}

.calculator-panel-builder {
  position: relative;
  overflow: hidden;
}

.calculator-panel-builder::before {
  content: "";
  position: absolute;
  inset: auto -12% -26% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.2), rgba(119, 180, 228, 0));
  pointer-events: none;
}

.calculator-panel-head,
.calculator-summary-head {
  display: grid;
  gap: 0.45rem;
}

.calculator-panel-copy {
  color: var(--muted);
  max-width: 58ch;
}

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

.calculator-control {
  display: grid;
  gap: 0.45rem;
}

.calculator-suggestions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calculator-suggestions-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(173, 215, 246, 0.36);
}

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

.calculator-suggestion-card {
  appearance: none;
  position: relative;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.9));
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(12px);
  opacity: 0;
  animation: fadeUp 0.44s ease forwards;
  animation-delay: var(--delay, 0s);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.calculator-suggestion-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.calculator-suggestion-card::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.32s ease;
  z-index: -1;
}

.calculator-suggestion-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 215, 246, 0.58);
  background: rgba(119, 180, 228, 0.14);
  box-shadow:
    0 18px 36px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.calculator-suggestion-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.calculator-suggestion-card:hover::after {
  opacity: 1;
  transform: rotate(16deg) translateX(360%);
}

.calculator-suggestion-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.calculator-suggestion-category {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-suggestion-price {
  color: var(--blue-deep);
  font-size: 1rem;
  white-space: nowrap;
}

.calculator-suggestion-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.08rem;
  line-height: 1.38;
}

.calculator-suggestion-action {
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-panel-summary {
  position: sticky;
  top: 6rem;
}

.calculator-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.calculator-stat-card {
  display: grid;
  gap: 0.22rem;
  min-height: 6.4rem;
  align-content: start;
  padding: 0.95rem 0.9rem;
  border: 1px solid rgba(207, 228, 244, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(237, 247, 255, 0.92));
}

.calculator-stat-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-stat-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.08rem, 2vw, 1.46rem);
  line-height: 1.15;
}

.calculator-selection {
  display: grid;
  gap: 0.9rem;
}

.calculator-selection-list {
  display: grid;
  gap: 0.9rem;
}

.calculator-selection-item {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.9));
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  transform: translateY(12px);
  opacity: 0;
  animation: fadeUp 0.44s ease forwards;
  animation-delay: var(--delay, 0s);
}

.calculator-selection-main {
  display: grid;
  gap: 0.35rem;
}

.calculator-selection-category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-selection-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.02rem;
  line-height: 1.35;
}

.calculator-selection-price {
  margin: 0;
  color: var(--muted);
}

.calculator-selection-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.calculator-qty-button,
.calculator-remove-button,
.calculator-action-button {
  appearance: none;
  border: 1px solid rgba(207, 228, 244, 0.92);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  font: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.calculator-qty-button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
}

.calculator-remove-button,
.calculator-action-button {
  min-height: 2.5rem;
  padding: 0.55rem 0.92rem;
  border-radius: 14px;
  font-weight: 600;
}

.calculator-qty-button:hover,
.calculator-remove-button:hover,
.calculator-action-button:hover {
  transform: translateY(-1px);
  border-color: rgba(119, 180, 228, 0.66);
  background: rgba(247, 242, 233, 0.92);
  box-shadow: 0 10px 18px rgba(77, 151, 210, 0.1);
}

.calculator-qty-value {
  min-width: 2rem;
  text-align: center;
  color: var(--blue-deep);
  font-weight: 700;
}

.calculator-line-total {
  margin-left: auto;
  color: var(--blue-deep);
  font-size: 1rem;
}

.calculator-summary-footer {
  display: grid;
  gap: 0.85rem;
}

.calculator-summary-footer p {
  color: var(--muted);
}

.calculator-summary-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.calculator-book-button {
  min-height: 2.5rem;
}

.calculator-empty {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px dashed rgba(173, 215, 246, 0.52);
  border-radius: 18px;
  background: rgba(248, 252, 255, 0.84);
  text-align: center;
}

.calculator-empty h3 {
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.calculator-empty p {
  color: var(--muted);
}

.hero-inner {
  text-align: center;
  max-width: 860px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.4rem, 4vw, 2.8rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.35rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: clamp(18px, 2.8vw, 30px);
  left: clamp(18px, 3.6vw, 38px);
  right: auto;
  margin: 0;
  z-index: 3;
  animation: fadeUp 0.9s ease forwards;
}

.brand-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--blue-deep);
  line-height: 1.1;
  white-space: nowrap;
  margin: 0;
}

.brand-title-main {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.brand-title-sub {
  font-size: clamp(0.7rem, 1.18vw, 0.9rem);
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  text-align: left;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.45rem);
  line-height: 1.03;
  color: var(--blue-deep);
}

.hero-lead {
  max-width: 62ch;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.82rem 1.6rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(214, 239, 255, 0.28), transparent 36%);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -130%;
  background: linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: left 0.5s ease;
}

.button-gold {
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-main), var(--blue-strong));
  box-shadow: 0 14px 30px rgba(77, 151, 210, 0.24);
}

.button-gold:focus-visible,
.call-button:focus-visible,
.contacts-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(119, 180, 228, 0.2),
    0 18px 34px rgba(77, 151, 210, 0.28);
}

.button-gold:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 22px 40px rgba(77, 151, 210, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.24);
}

.button-gold:hover::before {
  opacity: 1;
  transform: scale(1);
}

.button:hover::after {
  left: 130%;
}

.button:active,
.call-button:active,
.contacts-cta:active {
  transform: translateY(0) scale(0.985);
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.call-actions {
  display: grid;
  grid-template-columns: minmax(0, 28rem);
  justify-content: center;
  gap: 0.85rem;
  width: min(100%, 28rem);
}

.call-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 4.8rem;
  border-radius: 26px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.call-button:hover {
  transform: translateY(-3px) scale(1.008);
}

.call-button-primary {
  gap: 0.9rem;
  padding: 0.85rem 1rem 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #69afe2 0%, #4b94d0 58%, #3c7fba 100%);
  box-shadow: 0 18px 34px rgba(77, 151, 210, 0.28);
}

.call-button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.call-button-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(214, 239, 255, 0.18), transparent 34%);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.call-button-primary:hover::after {
  transform: translateX(140%);
}

.call-button-primary:hover::before {
  opacity: 1;
  transform: scale(1);
}

.call-button-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.call-button-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-asset {
  width: 1.22rem;
  height: 1.22rem;
  display: block;
}

.call-button-copy {
  display: grid;
  gap: 0.1rem;
  text-align: left;
  transition: transform 0.28s ease;
}

.call-button-kicker {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.94);
}

.call-button-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.call-button-pulse {
  margin-left: auto;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.52);
  animation: callPulse 1.9s ease-out infinite;
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.call-button-primary:hover .call-button-icon {
  background: rgba(0, 201, 107, 0.2);
  border-color: rgba(70, 240, 162, 0.7);
  color: #e9fff4;
  box-shadow:
    0 0 0 10px rgba(0, 201, 107, 0.2),
    0 16px 28px rgba(0, 201, 107, 0.16);
  transform: translateY(-1px) rotate(-4deg) scale(1.03);
}

.call-button-primary:hover .call-button-copy {
  transform: translateX(3px);
}

.call-button-primary:hover .call-button-pulse {
  background: var(--mint-soft);
  box-shadow: 0 0 0 0 rgba(0, 201, 107, 0.55);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

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

.section-kicker {
  color: var(--blue-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.surface-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2rem);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    filter 0.62s ease;
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.surface-card p {
  color: var(--muted);
}

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

.about-card,
.doctor-card,
.prices-list {
  background: rgba(255, 255, 255, 0.82);
}

.about-card-copy {
  display: grid;
  gap: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--blue-deep);
}

.about-card-metrics {
  display: grid;
  gap: 0.85rem;
}

.about-metric {
  display: grid;
  gap: 0.12rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(237, 247, 255, 0.92));
}

.about-metric-value {
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-strong);
}

.about-metric-label {
  color: var(--muted);
  line-height: 1.55;
}

.doctor-card {
  display: grid;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.doctor-card::before,
.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.62), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(214, 239, 255, 0.54), transparent 36%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.1), rgba(77, 151, 210, 0.22));
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: -2;
}

.doctor-card::after,
.service-detail-card::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 30%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.3s ease;
  z-index: -1;
}

.doctor-card:hover,
.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 215, 246, 0.56);
  background: rgba(119, 180, 228, 0.12);
  box-shadow:
    0 18px 38px rgba(77, 151, 210, 0.16),
    0 0 0 1px rgba(173, 215, 246, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.doctor-card:hover::before,
.service-detail-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.doctor-card:hover::after,
.service-detail-card:hover::after {
  opacity: 1;
  transform: rotate(16deg) translateX(360%);
}

.doctor-role {
  color: var(--blue-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.doctor-card h3 {
  margin: 0;
}

.prices-list {
  display: grid;
  gap: 0.2rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(207, 228, 244, 0.76);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-name {
  color: var(--blue-deep);
  font-weight: 600;
}

.price-value {
  color: var(--blue-strong);
  font-weight: 700;
  white-space: nowrap;
}

.prices-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.16), transparent 34%);
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 16px 32px rgba(77, 151, 210, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.service-card-link {
  display: grid;
  align-content: start;
  gap: 1rem;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.service-card-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.24));
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -2;
}

.service-card-link::after {
  content: "Подробнее";
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.28s ease, transform 0.28s ease, text-shadow 0.28s ease;
}

.service-card-link > * {
  position: relative;
  z-index: 1;
}

.service-card-orbit {
  position: relative;
  width: 7.4rem;
  height: 7.4rem;
  display: grid;
  place-items: center;
}

.service-card-link .service-icon {
  position: relative;
  width: 4.55rem;
  height: 4.55rem;
  border-radius: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(207, 228, 244, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 245, 255, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 44%);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card-link .service-icon::before,
.service-card-link .service-icon::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  transition: transform 0.46s ease, opacity 0.36s ease, filter 0.36s ease;
}

.service-card-link .service-icon::before {
  width: 3.2rem;
  height: 3.2rem;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.24), rgba(119, 180, 228, 0));
  transform: scale(0.72);
  opacity: 0.72;
  filter: blur(1px);
}

.service-card-link .service-icon::after {
  top: -0.8rem;
  right: -0.7rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(180deg, rgba(119, 180, 228, 0.22), rgba(77, 151, 210, 0.08));
  opacity: 0.42;
  transform: scale(0.7);
  filter: blur(4px);
}

.service-card-link .service-icon-file {
  width: 2.15rem;
  height: 2.15rem;
  display: block;
  object-fit: contain;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s ease,
    opacity 0.32s ease;
}

.service-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(173, 215, 246, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(227, 241, 252, 0.94)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.2), transparent 38%);
  box-shadow:
    0 22px 40px rgba(77, 151, 210, 0.18),
    0 0 0 1px rgba(173, 215, 246, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.service-card-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card-link:hover::after {
  color: var(--blue-deep);
  transform: translateX(4px);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.34);
}

.service-card-link:hover .service-icon {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(173, 215, 246, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(220, 240, 255, 0.98)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 46%);
  box-shadow:
    0 16px 30px rgba(77, 151, 210, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.service-card-link:hover .service-icon::before {
  transform: scale(1.18);
  opacity: 1;
  filter: blur(0);
}

.service-card-link:hover .service-icon::after {
  opacity: 0.92;
  transform: scale(1.18) translate(-0.1rem, 0.12rem);
  filter: blur(1px);
}

.service-card-link:hover .service-icon-file {
  transform: translateY(-0.16rem) scale(1.08) rotate(-6deg);
  filter: brightness(0.88) saturate(1.12) drop-shadow(0 0 12px rgba(255, 255, 255, 0.24));
}

.service-card-link:hover h3 {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.34);
}

.service-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.service-card-link h3 {
  margin-bottom: 0;
}

.service-page-section {
  padding-top: 1.2rem;
}

.service-detail-card {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.service-detail-head {
  display: grid;
  gap: 0.7rem;
}

.service-detail-copy {
  max-width: 60ch;
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.service-detail-block {
  border: 1px solid rgba(207, 228, 244, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  padding: 1.2rem 1.15rem;
}

.service-detail-block h3 {
  margin-bottom: 0.85rem;
  color: var(--blue-deep);
}

.service-detail-list,
.service-detail-prices {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list {
  display: grid;
  gap: 0.75rem;
}

.service-detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-main), var(--blue-strong));
  box-shadow: 0 0 0 5px rgba(119, 180, 228, 0.12);
}

.service-detail-prices {
  display: grid;
  gap: 0.7rem;
}

.service-detail-prices li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(207, 228, 244, 0.82);
}

.service-detail-prices li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-detail-prices span {
  color: var(--text);
}

.service-detail-prices strong {
  color: var(--blue-strong);
  white-space: nowrap;
}

.prices-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.prices-toolbar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.1rem;
}

.prices-toolbar-head {
  display: grid;
  gap: 0.45rem;
}

.prices-control {
  display: grid;
  gap: 0.45rem;
}

.prices-control-label {
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prices-input,
.prices-select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(207, 228, 244, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.prices-input:focus,
.prices-select:focus {
  border-color: rgba(119, 180, 228, 0.72);
  box-shadow: 0 0 0 4px rgba(119, 180, 228, 0.12);
}

.prices-category-panel {
  display: grid;
  gap: 0.65rem;
}

.price-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.price-chip {
  appearance: none;
  border: 1px solid rgba(207, 228, 244, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.62rem 0.92rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.price-chip:hover,
.price-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(119, 180, 228, 0.66);
  background: rgba(247, 242, 233, 0.92);
  box-shadow: 0 10px 18px rgba(77, 151, 210, 0.1);
}

.prices-results-shell {
  display: grid;
  gap: 1rem;
}

.prices-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.prices-results-summary {
  max-width: 34ch;
  color: var(--muted);
  text-align: right;
}

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

.price-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.9));
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(119, 180, 228, 0.54);
  box-shadow: 0 16px 30px rgba(77, 151, 210, 0.14);
}

.price-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-price {
  color: var(--blue-deep);
  font-size: 1rem;
  white-space: nowrap;
}

.price-card-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.12rem;
  line-height: 1.38;
}

.prices-empty-state {
  display: grid;
  gap: 0.45rem;
  text-align: center;
}

.price-teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-teaser-copy {
  max-width: 58ch;
  color: var(--muted);
}

.service-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.service-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: var(--blue-main);
  stroke-width: 1.22;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  font-size: 1.32rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  gap: 1rem;
}

.info-card {
  display: grid;
  gap: 1.15rem;
  text-align: left;
}

.info-card-intro {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 3.3rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(207, 228, 244, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.9));
  box-shadow: 0 10px 24px rgba(77, 151, 210, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.contact-item-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(228, 244, 255, 0.96), rgba(243, 250, 255, 0.92));
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.contact-item-icon svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: none;
  stroke: var(--blue-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-icon .icon-asset {
  width: 1.32rem;
  height: 1.32rem;
  filter: brightness(0) saturate(100%) invert(61%) sepia(27%) saturate(820%) hue-rotate(171deg) brightness(89%) contrast(88%);
  transition: filter 0.28s ease, transform 0.28s ease;
}

.contact-item-copy {
  min-width: 0;
}

.contact-item-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.18rem;
  transition: color 0.28s ease, transform 0.28s ease;
}

.contact-item-value {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.55;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.28s ease, transform 0.28s ease, text-shadow 0.28s ease;
}

a.contact-item-value {
  transition: color 0.24s ease;
}

a.contact-item-value:hover {
  color: var(--blue-strong);
}

.contact-phone-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.14rem 0 0.14rem 0;
}

.contact-item-phone:hover,
.contact-item-email:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 167, 220, 0.52);
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.99), rgba(224, 240, 252, 0.96));
  box-shadow: 0 18px 34px rgba(77, 151, 210, 0.2);
}

.contact-item-phone:hover .contact-item-icon,
.contact-item-email:hover .contact-item-icon {
  transform: scale(1.04);
  border-color: rgba(103, 167, 220, 0.56);
  background: linear-gradient(180deg, rgba(232, 246, 255, 1), rgba(205, 229, 247, 0.98));
  box-shadow: 0 0 0 8px rgba(103, 167, 220, 0.16);
  color: #4b91c8;
}

.contact-item-phone:hover .contact-item-icon .icon-asset,
.contact-item-email:hover .contact-item-icon .icon-asset {
  filter: brightness(0) saturate(100%) invert(52%) sepia(31%) saturate(1005%) hue-rotate(171deg) brightness(95%) contrast(86%);
  transform: scale(1.04);
}

.contact-item-phone:hover .contact-item-label,
.contact-item-email:hover .contact-item-label {
  color: var(--blue-strong);
  transform: translateX(2px);
}

.contact-item-phone:hover .contact-item-value,
.contact-item-email:hover .contact-item-value {
  color: #4b91c8;
  transform: translateX(2px);
  text-shadow: 0 0 14px rgba(103, 167, 220, 0.18);
}

.contacts-page-hero {
  padding-top: clamp(6.6rem, 14vw, 8.8rem);
}

.contacts-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.35rem;
  justify-items: center;
  text-align: center;
  padding: clamp(1.7rem, 4vw, 2.8rem);
}

.contacts-hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.24), rgba(119, 180, 228, 0));
  pointer-events: none;
}

.contacts-hero-actions {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contacts-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.contacts-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.66), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.56), transparent 36%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: -2;
}

.contacts-cta::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.32s ease;
  z-index: -1;
}

.contacts-cta:hover {
  transform: translateY(-4px) scale(1.01);
}

.contacts-cta:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contacts-cta:hover::after {
  opacity: 1;
  transform: rotate(16deg) translateX(360%);
}

.contacts-cta-primary {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #69afe2 0%, #4b94d0 58%, #3c7fba 100%);
  box-shadow: 0 20px 36px rgba(77, 151, 210, 0.28);
}

.contacts-cta-primary:hover {
  box-shadow: 0 24px 44px rgba(77, 151, 210, 0.32);
}

.contacts-cta-secondary {
  color: var(--blue-deep);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 249, 255, 0.9));
  box-shadow: 0 18px 34px rgba(77, 151, 210, 0.14);
}

.contacts-cta-secondary:hover {
  box-shadow: 0 24px 42px rgba(77, 151, 210, 0.18);
}

.contacts-cta-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease,
    color 0.32s ease;
}

.contacts-cta-secondary .contacts-cta-icon {
  border-color: rgba(207, 228, 244, 0.88);
  background: linear-gradient(180deg, rgba(228, 244, 255, 0.96), rgba(242, 249, 255, 0.92));
}

.contacts-cta-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-cta-copy {
  display: grid;
  gap: 0.14rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.contacts-cta-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.84;
}

.contacts-cta-title {
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contacts-cta:hover .contacts-cta-icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 14px 30px rgba(77, 151, 210, 0.14);
}

.contacts-cta:hover .contacts-cta-copy {
  transform: translateX(3px);
}

.contacts-cta-primary:hover .contacts-cta-icon {
  transform: translateY(-1px) rotate(-4deg) scale(1.05);
}

.contacts-cta-secondary:hover .contacts-cta-icon {
  transform: translateY(-1px) rotate(4deg) scale(1.05);
}

.contacts-page-section {
  padding-top: 1.6rem;
}

.contacts-page-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contacts-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.contact-feature-card::before {
  content: "";
  position: absolute;
  inset: auto auto -35% -12%;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.24), rgba(119, 180, 228, 0));
  pointer-events: none;
}

.contact-feature-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.86)),
    radial-gradient(circle at 100% 0%, rgba(188, 225, 249, 0.28), transparent 30%);
}

.contact-feature-head {
  display: grid;
  gap: 0.55rem;
  max-width: 52ch;
}

.contact-feature-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-feature-stack {
  display: grid;
  gap: 0.95rem;
}

.contact-feature-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1rem 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(207, 228, 244, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.9));
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.contact-feature-tile::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(214, 239, 255, 0.54), transparent 36%),
    linear-gradient(135deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.26));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: -2;
}

.contact-feature-tile::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(16deg) translateX(0);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.32s ease;
  z-index: -1;
}

.contact-feature-tile:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(173, 215, 246, 0.58);
  background: rgba(119, 180, 228, 0.14);
  box-shadow:
    0 20px 40px rgba(77, 151, 210, 0.18),
    0 0 0 1px rgba(173, 215, 246, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.contact-feature-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contact-feature-tile:hover::after {
  opacity: 1;
  transform: rotate(16deg) translateX(360%);
}

.contact-feature-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 228, 244, 0.92);
  background: linear-gradient(180deg, rgba(228, 244, 255, 0.96), rgba(243, 250, 255, 0.92));
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.contact-feature-icon svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: none;
  stroke: var(--blue-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.32s ease, transform 0.32s ease;
}

.contact-feature-tile:hover .contact-feature-icon {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(173, 215, 246, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(225, 241, 252, 0.95));
  box-shadow: 0 16px 30px rgba(77, 151, 210, 0.14);
}

.contact-feature-tile:hover .contact-feature-icon svg {
  stroke: var(--blue-deep);
  transform: scale(1.05);
}

.contact-feature-copy {
  display: grid;
  gap: 0.15rem;
}

.contact-feature-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-feature-copy strong {
  color: var(--blue-deep);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.35;
  transition: color 0.32s ease, text-shadow 0.32s ease, transform 0.32s ease;
}

.contact-feature-tile:hover .contact-feature-copy strong {
  color: var(--blue-deep);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.34);
  transform: translateX(2px);
}

.contacts-page-meta {
  display: grid;
  gap: 1rem;
}

.contact-floating-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.contact-floating-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(188, 225, 249, 0.22), rgba(188, 225, 249, 0));
  pointer-events: none;
}

.contact-floating-card:hover {
  transform: translateY(-5px);
  border-color: rgba(173, 215, 246, 0.56);
  box-shadow: 0 20px 40px rgba(77, 151, 210, 0.16);
}

.contact-floating-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(228, 244, 255, 0.98), rgba(243, 250, 255, 0.94));
  border: 1px solid rgba(207, 228, 244, 0.92);
  box-shadow: 0 12px 24px rgba(77, 151, 210, 0.1);
}

.contact-floating-icon svg {
  width: 1.38rem;
  height: 1.38rem;
  fill: none;
  stroke: var(--blue-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-button-icon svg,
.service-icon svg,
.contacts-cta-icon svg,
.contact-item-icon svg,
.contact-feature-icon svg,
.contact-floating-icon svg,
.site-search-field-icon svg,
.nav-search-trigger-icon svg,
.social-icon svg {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-floating-label {
  color: var(--blue-strong);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.contacts-highlight-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-highlight-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.contact-highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(173, 215, 246, 0.56);
  box-shadow: 0 18px 36px rgba(77, 151, 210, 0.14);
}

.contact-highlight-line {
  width: 4.2rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-strong));
  box-shadow: 0 0 0 8px rgba(119, 180, 228, 0.12);
}

.contact-highlight-kicker {
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer {
  padding: 2.4rem 0 2.8rem;
  border-top: 1px solid rgba(207, 228, 244, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(241, 248, 255, 0.86)),
    radial-gradient(circle at top center, rgba(188, 225, 249, 0.14), transparent 42%);
}

.footer-inner {
  display: grid;
  gap: 1.15rem;
  text-align: center;
}

.footer-inner p {
  color: var(--muted);
}

.service-chip-feature {
  background:
    linear-gradient(180deg, rgba(119, 180, 228, 0.2), rgba(77, 151, 210, 0.12)),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(119, 180, 228, 0.42);
}

.tooth-map-intro {
  position: relative;
  overflow: hidden;
}

.tooth-map-page .container {
  width: min(1280px, 94%);
}

.tooth-map-intro::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.18), rgba(119, 180, 228, 0));
  pointer-events: none;
}

.tooth-map-shell,
.tooth-map-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.78fr);
  gap: 1rem;
  align-items: start;
}

.tooth-map-card {
  display: grid;
  gap: 1.15rem;
}

.tooth-map-card-board,
.tooth-map-card-controls,
.tooth-map-summary-card,
.tooth-map-side-card {
  position: relative;
  overflow: hidden;
}

.tooth-map-card-board::before,
.tooth-map-card-controls::before,
.tooth-map-summary-card::before,
.tooth-map-side-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -24% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(119, 180, 228, 0.16), rgba(119, 180, 228, 0));
  pointer-events: none;
}

.tooth-map-card-head {
  display: grid;
  gap: 0.45rem;
}

.tooth-map-board {
  display: grid;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(119, 180, 228, 0.42) transparent;
}

.tooth-map-board-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.tooth-map-svg-shell {
  min-width: 64rem;
  padding: 1.25rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 247, 255, 0.95)),
    radial-gradient(circle at top center, rgba(173, 215, 246, 0.24), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 40px rgba(77, 151, 210, 0.1);
  aspect-ratio: 1180 / 700;
}

.tooth-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.tooth-map-gum {
  fill: rgba(226, 241, 252, 0.92);
  stroke: rgba(173, 215, 246, 0.5);
  stroke-width: 2;
}

.tooth-map-gum-highlight {
  fill: none;
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 12;
  stroke-linecap: round;
  opacity: 0.74;
}

.tooth-map-arch {
  fill: none;
  stroke: rgba(119, 180, 228, 0.42);
  stroke-width: 3;
  stroke-linecap: round;
}

.tooth-map-bite-line {
  fill: none;
  stroke: rgba(119, 180, 228, 0.2);
  stroke-width: 3;
  stroke-dasharray: 10 12;
  stroke-linecap: round;
}

.tooth-node {
  cursor: pointer;
  outline: none;
}

.tooth-node-hit {
  fill: rgba(255, 255, 255, 0);
}

.tooth-node-visual {
  transition: transform 0.24s ease;
}

.tooth-node-glow {
  fill: rgba(119, 180, 228, 0.12);
  opacity: 0;
  filter: blur(7px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.tooth-node-shape {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(77, 151, 210, 0.92);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill 0.24s ease, stroke 0.24s ease, filter 0.24s ease;
}

.tooth-node-inner {
  fill: rgba(173, 215, 246, 0.2);
  transition: fill 0.24s ease, opacity 0.24s ease;
}

.tooth-node-label {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  fill: var(--blue-deep);
  pointer-events: none;
  user-select: none;
}

.tooth-node-badge {
  opacity: 0;
  transform-origin: center;
  transform: scale(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.tooth-node-badge-bg {
  fill: var(--blue-deep);
}

.tooth-node-badge-text {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
  fill: var(--white);
}

.tooth-node:hover .tooth-node-visual,
.tooth-node:focus-visible .tooth-node-visual,
.tooth-node.is-selected .tooth-node-visual {
  transform: translateY(-5px);
}

.tooth-node:hover .tooth-node-glow,
.tooth-node:focus-visible .tooth-node-glow,
.tooth-node.is-selected .tooth-node-glow {
  opacity: 1;
}

.tooth-node:hover .tooth-node-shape,
.tooth-node:focus-visible .tooth-node-shape {
  fill: rgba(255, 255, 255, 1);
  stroke: rgba(49, 89, 122, 1);
  filter: drop-shadow(0 10px 18px rgba(77, 151, 210, 0.12));
}

.tooth-node.is-selected .tooth-node-shape {
  fill: rgba(224, 241, 255, 1);
  stroke: rgba(49, 89, 122, 1);
  filter: drop-shadow(0 12px 22px rgba(77, 151, 210, 0.16));
}

.tooth-node.has-issue:not(.is-selected) .tooth-node-shape {
  fill: rgba(241, 248, 255, 0.98);
  stroke: rgba(77, 151, 210, 1);
}

.tooth-node.is-selected .tooth-node-inner,
.tooth-node:hover .tooth-node-inner,
.tooth-node:focus-visible .tooth-node-inner {
  fill: rgba(119, 180, 228, 0.26);
}

.tooth-node.has-issue .tooth-node-badge {
  opacity: 1;
  transform: scale(1);
}

.tooth-map-jaw {
  display: grid;
  gap: 0.7rem;
}

.tooth-map-jaw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tooth-map-jaw-label,
.tooth-map-jaw-hint {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tooth-map-jaw-label {
  color: var(--blue-deep);
}

.tooth-map-jaw-hint {
  color: var(--muted);
}

.tooth-map-row {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 0.55rem;
  min-width: 48rem;
}

.tooth-map-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tooth-map-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 228, 244, 0), rgba(119, 180, 228, 0.38), rgba(207, 228, 244, 0));
}

.tooth-map-tooth {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.22rem;
  min-height: 5.3rem;
  padding: 0.7rem 0.2rem 0.45rem;
  border: 1px solid rgba(207, 228, 244, 0.92);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 245, 255, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 44%);
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.tooth-map-tooth:hover {
  transform: translateY(-3px);
  border-color: rgba(119, 180, 228, 0.5);
  box-shadow:
    0 16px 30px rgba(77, 151, 210, 0.14),
    0 0 0 1px rgba(173, 215, 246, 0.3);
}

.tooth-map-tooth.is-selected {
  border-color: rgba(77, 151, 210, 0.84);
  background:
    linear-gradient(180deg, rgba(119, 180, 228, 0.2), rgba(77, 151, 210, 0.12)),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 32px rgba(77, 151, 210, 0.18),
    0 0 0 1px rgba(119, 180, 228, 0.42);
}

.tooth-map-tooth.has-issue:not(.is-selected) {
  border-color: rgba(77, 151, 210, 0.56);
  background:
    linear-gradient(180deg, rgba(119, 180, 228, 0.12), rgba(77, 151, 210, 0.08)),
    rgba(255, 255, 255, 0.96);
}

.tooth-map-tooth-shape {
  width: 2.15rem;
  height: 2.15rem;
  color: var(--blue-strong);
  transition: transform 0.24s ease, color 0.24s ease, filter 0.24s ease;
}

.tooth-map-tooth:hover .tooth-map-tooth-shape,
.tooth-map-tooth.is-selected .tooth-map-tooth-shape {
  transform: translateY(-2px) scale(1.04);
  color: var(--blue-deep);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28));
}

.tooth-map-tooth-shape svg {
  width: 100%;
  height: 100%;
}

.tooth-map-tooth-shape path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tooth-map-tooth-number {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tooth-map-tooth-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding-inline: 0.18rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooth-map-tooth.has-issue .tooth-map-tooth-badge {
  opacity: 1;
  transform: scale(1);
}

.tooth-active-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.16), transparent 38%);
}

.tooth-active-label {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.tooth-active-number {
  color: var(--blue-deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.tooth-problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tooth-problem-chip {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(207, 228, 244, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.tooth-problem-chip:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(119, 180, 228, 0.54);
  box-shadow: 0 12px 24px rgba(77, 151, 210, 0.12);
}

.tooth-problem-chip.is-active {
  background: linear-gradient(135deg, rgba(119, 180, 228, 0.24), rgba(77, 151, 210, 0.18));
  border-color: rgba(77, 151, 210, 0.68);
  color: var(--blue-deep);
  box-shadow: 0 14px 26px rgba(77, 151, 210, 0.16);
}

.tooth-problem-chip:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.tooth-map-quick-notes {
  display: grid;
  gap: 0.7rem;
}

.tooth-map-note-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.tooth-map-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.tooth-summary-list {
  display: grid;
  gap: 0.85rem;
}

.tooth-summary-item {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.16), transparent 38%);
}

.tooth-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.tooth-summary-head strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.tooth-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tooth-summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.tooth-summary-remove {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(207, 228, 244, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tooth-summary-remove:hover {
  transform: translateY(-1px);
  border-color: rgba(119, 180, 228, 0.52);
  box-shadow: 0 10px 20px rgba(77, 151, 210, 0.12);
}

.tooth-summary-remove span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.tooth-summary-remove span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tooth-summary-remove span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tooth-map-empty {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1rem;
  border: 1px dashed rgba(119, 180, 228, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.tooth-map-empty h3 {
  color: var(--blue-deep);
}

.tooth-map-empty p {
  color: var(--muted);
}

.tooth-map-summary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.tooth-map-steps {
  display: grid;
  gap: 0.9rem;
}

.tooth-map-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.16), transparent 38%);
}

.tooth-map-step-index {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(119, 180, 228, 0.12);
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.tooth-map-step strong {
  display: block;
  color: var(--blue-deep);
  margin-bottom: 0.25rem;
}

.tooth-map-step p {
  color: var(--muted);
}

.footer-brand-block {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.footer-brand {
  margin: 0;
  color: var(--blue-deep);
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  max-width: 46ch;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
}

.footer-contact-card {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(207, 228, 244, 0.88);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.9)),
    radial-gradient(circle at top right, rgba(173, 215, 246, 0.16), transparent 38%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(77, 151, 210, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.footer-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 215, 246, 0.56);
  box-shadow:
    0 18px 34px rgba(77, 151, 210, 0.14),
    0 0 0 1px rgba(173, 215, 246, 0.3);
  background: rgba(119, 180, 228, 0.12);
}

.footer-contact-label {
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact-card strong {
  color: var(--blue-deep);
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.social-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--blue-main);
  display: grid;
  place-items: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon:hover {
  transform: translateY(-1px);
  border-color: var(--blue-soft);
  box-shadow: 0 8px 20px rgba(77, 151, 210, 0.2);
}

.copyright {
  font-size: 0.88rem;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    transform: scale(1.03);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none !important;
  }

  [data-reveal],
  .service-card,
  .doctor-card,
  .service-detail-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100%, calc(100% - 2rem));
  }

  .site-nav-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .section {
    padding: clamp(3rem, 8vw, 4.8rem) 0;
  }

  .hero {
    padding-top: clamp(3.5rem, 10vw, 5.2rem);
  }

  .hero-inner {
    max-width: 100%;
    padding: 5.75rem clamp(1.25rem, 4vw, 2rem) clamp(2rem, 4vw, 2.8rem);
    border-radius: 30px;
  }

  h1 {
    max-width: 12ch;
    margin-inline: auto;
  }

  .hero-lead {
    max-width: 44ch;
    font-size: 1rem;
  }

  .call-actions {
    width: min(100%, 27rem);
  }

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

  .contacts-hero-actions,
  .contacts-page-grid,
  .contacts-highlight-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .prices-calculator-shell {
    grid-template-columns: 1fr;
  }

  .tooth-map-shell,
  .tooth-map-summary-grid,
  .tooth-map-summary-stats,
  .tooth-map-summary-actions {
    grid-template-columns: 1fr;
  }

  .prices-toolbar {
    position: static;
  }

  .calculator-panel-summary {
    position: static;
  }

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

  .calculator-suggestions {
    grid-template-columns: 1fr;
  }

  .tooth-map-jaw-head,
  .tooth-active-card,
  .tooth-summary-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tooth-map-card {
    gap: 0.95rem;
  }

  .tooth-map-board-meta {
    grid-template-columns: 1fr;
  }

  .tooth-map-svg-shell {
    min-width: 50rem;
    padding: 0.85rem;
  }

  .tooth-node-label {
    font-size: 10px;
  }

  .tooth-node-badge-text {
    font-size: 9px;
  }

  .about-grid,
  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .surface-card {
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.2rem));
  }

  .site-nav-shell {
    top: 10px;
    width: min(100%, calc(100% - 0.8rem));
  }

  .site-nav {
    padding: 0.5rem;
    border-radius: 22px;
  }

  .site-nav-brand-text {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .nav-search-trigger {
    margin-left: auto;
    min-height: 2.65rem;
    padding-inline: 0.78rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.45rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.92));
    box-shadow: 0 18px 40px rgba(77, 151, 210, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    justify-content: flex-start;
    min-height: 3.2rem;
    padding-inline: 1rem;
    border-radius: 16px;
    background: rgba(119, 180, 228, 0.08);
  }

  .nav-dropdown {
    display: grid;
    gap: 0.45rem;
  }

  .nav-dropdown-trigger {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 14rem;
    padding-top: 0.15rem;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-submenu-link {
    width: 100%;
    justify-content: flex-start;
    padding-left: 1.15rem;
    min-height: 2.9rem;
    border-radius: 14px;
    background: rgba(119, 180, 228, 0.06);
  }

  .site-search-panel {
    top: 1rem;
    width: min(42rem, calc(100vw - 1rem));
    padding: 1rem;
    border-radius: 26px;
  }

  .site-search-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-search-results {
    max-height: calc(100vh - 15.5rem);
  }

  .section {
    padding: 2.7rem 0;
  }

  .hero {
    padding-top: 6.15rem;
  }

  .service-page-hero,
  .prices-page-hero,
  .contacts-page-hero {
    padding-top: 6.15rem;
    padding-bottom: 1.4rem;
  }

  .hero-inner {
    padding: 5.5rem 1rem 1.5rem;
    border-radius: 24px;
  }

  .brand-lockup {
    top: 14px;
    left: 14px;
    right: auto;
  }

  .brand-title {
    line-height: 0.98;
    white-space: normal;
  }

  .brand-title-main {
    font-size: clamp(1rem, 5.2vw, 1.18rem);
    letter-spacing: 0.05em;
  }

  .brand-title-sub {
    font-size: clamp(0.64rem, 3vw, 0.76rem);
    letter-spacing: 0.12em;
  }

  .coming-pill {
    margin-bottom: 1rem;
    padding-inline: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(1.85rem, 11vw, 2.65rem);
    max-width: 9.5ch;
  }

  .hero-lead {
    max-width: 30ch;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .call-actions {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

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

  .calculator-controls,
  .calculator-summary-stats {
    grid-template-columns: 1fr;
  }

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

  .calculator-book-button,
  .calculator-action-button {
    width: 100%;
    justify-content: center;
  }

  .contacts-hero-card {
    padding: 1.2rem 1rem 1.3rem;
    border-radius: 24px;
  }

  .contacts-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .contacts-cta-copy {
    text-align: center;
  }

  .contact-feature-card,
  .contact-floating-card,
  .contact-highlight-card {
    padding: 1.1rem 1rem;
  }

  .contact-feature-tile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-feature-copy {
    text-align: center;
  }

  .footer-contact-card {
    text-align: left;
  }

  .service-page-chips {
    gap: 0.55rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.2rem;
    margin-inline: -0.1rem;
    scrollbar-width: none;
  }

  .service-chip {
    width: auto;
    min-height: 2.6rem;
    padding: 0.62rem 0.9rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .service-page-chips::-webkit-scrollbar {
    display: none;
  }

  .service-page-intro {
    gap: 0.95rem;
    padding: 1.15rem 1rem 1rem;
    border-radius: 24px;
  }

  .service-page-intro .service-page-title {
    font-size: clamp(1.08rem, 4.2vw, 1.28rem);
    max-width: 100%;
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .service-page-intro .hero-lead {
    max-width: 31ch;
    font-size: 0.93rem;
    line-height: 1.5;
  }

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

  .prices-hero-card {
    gap: 0.95rem;
    padding: 1.15rem 1rem 1rem;
    border-radius: 24px;
  }

  .prices-hero-card h1 {
    max-width: 100%;
    font-size: clamp(1.22rem, 5.1vw, 1.38rem);
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .prices-hero-card .hero-lead {
    max-width: 31ch;
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .calculator-panel {
    gap: 0.95rem;
  }

  .calculator-suggestion-card,
  .calculator-selection-item {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .calculator-selection-controls {
    justify-content: center;
  }

  .calculator-line-total {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.9rem 0;
  }

  .service-card {
    padding: 1rem 0.95rem 1.05rem;
  }

  .service-card-orbit {
    width: 6.35rem;
    height: 6.35rem;
  }

  .service-card-link .service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 22px;
  }

  .service-card-link .service-icon-file {
    width: 1.84rem;
    height: 1.84rem;
  }

  .service-card h3 {
    max-width: 100%;
    font-size: 1.18rem;
  }

  .service-detail-card {
    gap: 1.1rem;
    padding: 1.1rem 1rem;
  }

  .service-detail-block {
    padding: 1rem 0.95rem;
  }

  .service-detail-prices li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .prices-results-head,
  .price-teaser-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .prices-results-summary {
    text-align: left;
  }

  .prices-toolbar {
    padding: 1rem 0.95rem;
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  h3 {
    font-size: 1.18rem;
  }

  .section-heading {
    margin-bottom: 1.15rem;
  }

  .button-gold {
    width: 100%;
    min-height: 3rem;
  }

  .hero-actions {
    justify-items: stretch;
  }

  .call-button {
    min-height: 4.4rem;
    border-radius: 22px;
  }

  .call-button-primary {
    padding-right: 0.9rem;
  }

  .call-button-title {
    font-size: 0.98rem;
  }

  .call-button-kicker {
    font-size: 0.84rem;
  }

  .surface-card {
    padding: 1.1rem 1rem;
    border-radius: 20px;
  }

  .info-card {
    gap: 0.9rem;
  }

  .contact-item {
    grid-template-columns: 2.9rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .contact-item-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 14px;
  }

  .contact-item-value {
    font-size: 0.95rem;
  }

  .contact-phone-link {
    align-self: stretch;
    justify-content: center;
    padding-right: 0;
  }

  .footer {
    padding: 1.4rem 0 2rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100%, calc(100% - 0.9rem));
  }

  .site-nav-brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 16px;
  }

  .site-nav-brand-tooth {
    width: 1.12rem;
    height: 1.12rem;
  }

  .site-nav-brand-text {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .nav-toggle {
    min-width: 6.5rem;
    height: 2.85rem;
    padding-left: 0.72rem;
  }

  .nav-search-trigger {
    min-width: 0;
    padding: 0.65rem;
  }

  .nav-search-trigger-text {
    display: none;
  }

  .site-search-panel {
    top: 0.75rem;
    width: calc(100vw - 0.8rem);
    max-height: calc(100vh - 1.5rem);
    overflow: hidden;
  }

  .site-search-field {
    min-height: 3.6rem;
    padding-inline: 0.85rem;
  }

  .site-search-results {
    max-height: calc(100vh - 16rem);
  }

  .nav-toggle-text {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .nav-toggle-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .service-page-hero,
  .prices-page-hero,
  .contacts-page-hero {
    padding-top: 6rem;
    padding-bottom: 1.2rem;
  }

  .hero-inner {
    padding: 5.15rem 0.85rem 1.2rem;
    border-radius: 20px;
  }

  .service-page-intro {
    gap: 0.82rem;
    padding: 1rem 0.9rem 0.95rem;
    border-radius: 20px;
  }

  .service-page-intro .service-page-title {
    font-size: clamp(0.98rem, 4.5vw, 1.12rem);
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .service-page-intro .hero-lead {
    max-width: 28ch;
    font-size: 0.9rem;
  }

  .tooth-map-board {
    gap: 0.85rem;
  }

  .tooth-map-svg-shell {
    min-width: 40rem;
    padding: 0.7rem;
  }

  .tooth-node-label {
    font-size: 9px;
  }

  .tooth-node-badge-text {
    font-size: 8px;
  }

  .tooth-problem-chip {
    min-height: 2.55rem;
    padding: 0.62rem 0.88rem;
    font-size: 0.88rem;
  }

  .tooth-map-step {
    padding: 0.9rem 0.85rem;
    border-radius: 18px;
  }

  .brand-lockup {
    top: 12px;
    left: 12px;
  }

  .brand-title-main {
    font-size: 0.98rem;
  }

  .brand-title-sub {
    font-size: 0.62rem;
  }

  .coming-pill {
    width: 100%;
    max-width: calc(100% - 5.4rem);
    margin-left: auto;
    margin-right: 0;
    justify-content: center;
  }

  h1 {
    font-size: clamp(1.7rem, 10.5vw, 2.2rem);
  }

  .prices-hero-card h1 {
    font-size: clamp(1.1rem, 5.4vw, 1.24rem);
    line-height: 1.1;
    max-width: 100%;
  }

  .prices-hero-card .hero-lead {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .hero-lead {
    max-width: 27ch;
    font-size: 0.92rem;
  }

  .call-button {
    min-height: 4.2rem;
  }

  .service-card-orbit {
    width: 5.6rem;
    height: 5.6rem;
  }

  .service-card-link .service-icon {
    width: 3.52rem;
    height: 3.52rem;
    border-radius: 18px;
  }

  .service-card-link .service-icon-file {
    width: 1.54rem;
    height: 1.54rem;
  }

  .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.08;
    max-width: 100%;
  }

  .call-button-primary {
    gap: 0.72rem;
    padding-left: 0.82rem;
  }

  .call-button-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 16px;
  }

  .info-card-intro {
    font-size: 0.92rem;
  }

  .contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-item-copy {
    width: 100%;
  }

  .contact-phone-link {
    justify-content: center;
  }

  .section-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }
}

/* ProHealth rebuild layer */

.prohealth-shell {
  --white: #ffffff;
  --blue-bg: #f4f8fc;
  --blue-soft: #e8f2fb;
  --blue-main: #2f80ed;
  --blue-strong: #1d6fd8;
  --blue-deep: #113b67;
  --mint-soft: #dff6ec;
  --mint-strong: #2fb579;
  --text: #17324d;
  --muted: #667b90;
  --line: #d9e5f0;
  --surface: rgba(255, 255, 255, 0.94);
  --shadow-soft: 0 22px 48px rgba(16, 54, 92, 0.08);
  background:
    radial-gradient(circle at top left, rgba(95, 169, 238, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fbfe 0%, #f2f7fb 36%, #ffffff 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.prohealth-shell h1,
.prohealth-shell h2,
.prohealth-shell h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
}

.prohealth-shell .container {
  width: min(1280px, 92%);
}

.prohealth-shell .section {
  padding: clamp(4.5rem, 7vw, 6.8rem) 0;
}

.prohealth-shell .ambient-top {
  width: 58rem;
  height: 32rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.12), rgba(47, 128, 237, 0));
}

.prohealth-shell .site-nav-shell {
  width: min(1280px, calc(100% - 1rem));
}

.prohealth-shell .site-nav {
  padding: 0.82rem 1rem;
  border: 1px solid rgba(217, 229, 240, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(16, 54, 92, 0.08);
}

.prohealth-shell .site-nav-brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.12), rgba(47, 128, 237, 0.04));
  color: var(--blue-main);
  box-shadow: inset 0 0 0 1px rgba(47, 128, 237, 0.1);
}

.prohealth-shell .site-nav-brand-text {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.prohealth-shell .nav-menu {
  gap: 0.22rem;
}

.prohealth-shell .nav-link,
.prohealth-shell .nav-dropdown-trigger,
.prohealth-shell .nav-submenu-link {
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.prohealth-shell .nav-link,
.prohealth-shell .nav-dropdown-trigger {
  padding: 0.78rem 0.96rem;
}

.prohealth-shell .nav-link:hover,
.prohealth-shell .nav-dropdown-trigger:hover,
.prohealth-shell .nav-link-current,
.prohealth-shell .nav-dropdown-current .nav-dropdown-trigger {
  background: rgba(47, 128, 237, 0.08);
  color: var(--blue-strong);
  box-shadow: inset 0 0 0 1px rgba(47, 128, 237, 0.1);
}

.prohealth-shell .nav-dropdown-menu {
  border-radius: 22px;
  padding: 0.55rem;
  border: 1px solid rgba(217, 229, 240, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 46px rgba(16, 54, 92, 0.12);
}

.prohealth-shell .nav-search-trigger {
  order: 2;
  margin-left: auto;
  padding: 0.76rem 0.94rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 229, 240, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(16, 54, 92, 0.06);
}

.prohealth-shell .nav-search-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 54, 92, 0.1);
}

.prohealth-shell .nav-search-trigger-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 14px;
  background: rgba(47, 128, 237, 0.08);
  color: var(--blue-strong);
}

.prohealth-shell .nav-search-trigger-text {
  color: var(--text);
}

.prohealth-shell .site-search-panel {
  width: min(900px, calc(100% - 1.2rem));
  min-height: min(38rem, 86vh);
  border-radius: 28px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 72px rgba(10, 39, 66, 0.16);
}

.prohealth-shell .site-search-close,
.prohealth-shell .site-search-field,
.prohealth-shell .site-search-result-card,
.prohealth-shell .site-search-empty {
  border-radius: 24px;
}

.prohealth-shell .site-search-field {
  min-height: 4.8rem;
  border-color: rgba(217, 229, 240, 0.98);
  background: #fbfdff;
}

.prohealth-shell .site-search-field input {
  font-size: 1rem;
  font-weight: 600;
}

.prohealth-shell .site-search-result-card {
  border: 1px solid rgba(217, 229, 240, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 12px 24px rgba(16, 54, 92, 0.05);
}

.prohealth-shell .hero {
  padding-top: clamp(8rem, 11vw, 9.5rem);
}

.prohealth-shell .hero-inner {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.prohealth-shell .prohealth-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.25rem, 2.8vw, 2rem);
  align-items: stretch;
}

.prohealth-shell .prohealth-hero-copy,
.prohealth-shell .prohealth-doctor-hero-card,
.prohealth-shell .prohealth-feature-card,
.prohealth-shell .prohealth-service-card,
.prohealth-shell .prohealth-doctor-card,
.prohealth-shell .prohealth-testimonial-card,
.prohealth-shell .prohealth-cta-card {
  border: 1px solid rgba(217, 229, 240, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(16, 54, 92, 0.06);
}

.prohealth-shell .prohealth-hero-copy {
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 32px;
}

.prohealth-shell .section-kicker {
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prohealth-shell h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  line-height: 0.94;
}

.prohealth-shell .hero-lead {
  max-width: 40rem;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.prohealth-shell .prohealth-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.prohealth-shell .button,
.prohealth-shell .call-button,
.prohealth-shell .contacts-cta {
  min-height: 3.6rem;
  border-radius: 999px;
  font-weight: 800;
}

.prohealth-shell .button-gold {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-strong));
  color: #fff;
  box-shadow: 0 18px 34px rgba(32, 98, 177, 0.22);
}

.prohealth-shell .button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(32, 98, 177, 0.28);
}

.prohealth-shell .button-secondary {
  border-color: rgba(47, 128, 237, 0.18);
  color: var(--blue-strong);
  background: rgba(47, 128, 237, 0.05);
}

.prohealth-shell .button-secondary:hover {
  background: rgba(47, 128, 237, 0.09);
  border-color: rgba(47, 128, 237, 0.26);
}

.prohealth-shell .prohealth-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.prohealth-shell .prohealth-stat-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(217, 229, 240, 0.98);
  border-radius: 22px;
  background: #fbfdff;
}

.prohealth-shell .prohealth-stat-card strong {
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.prohealth-shell .prohealth-stat-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.prohealth-shell .prohealth-doctor-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.86fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 100%;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  border-radius: 32px;
  overflow: hidden;
}

.prohealth-shell .prohealth-doctor-hero-card::before {
  content: "";
  position: absolute;
  inset: auto -5rem -8rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.12), rgba(47, 128, 237, 0));
}

.prohealth-shell .prohealth-doctor-photo {
  position: relative;
  min-height: 25rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(232, 242, 251, 0.88), rgba(246, 250, 253, 0.96)),
    #f4f8fc;
  overflow: hidden;
}

.prohealth-shell .prohealth-photo-silhouette {
  position: absolute;
  inset: auto 12% 0;
  height: 88%;
  border-radius: 999px 999px 34px 34px;
  background:
    radial-gradient(circle at 50% 14%, #fefefe 0 16%, transparent 17%),
    radial-gradient(circle at 50% 22%, #d7e6f4 0 18%, transparent 19%),
    linear-gradient(180deg, #c7dff2 0%, #9cc6e7 38%, #6ea5d4 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 24px 40px rgba(34, 95, 154, 0.16);
}

.prohealth-shell .prohealth-photo-silhouette::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 50%;
  width: 32%;
  height: 21%;
  transform: translateX(-50%);
  border-radius: 999px 999px 46% 46%;
  background: linear-gradient(180deg, #2b3b4f 0%, #162434 100%);
  box-shadow: 0 10px 18px rgba(14, 24, 36, 0.18);
}

.prohealth-shell .prohealth-photo-silhouette::after {
  content: "";
  position: absolute;
  inset: auto 12% 12% 12%;
  height: 24%;
  border-radius: 30px;
  background: linear-gradient(180deg, #eef6fd 0%, #d7e8f8 100%);
}

.prohealth-shell .prohealth-doctor-copy {
  position: relative;
  z-index: 1;
}

.prohealth-shell .prohealth-doctor-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.08);
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prohealth-shell .prohealth-doctor-copy h3 {
  margin-top: 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.06;
}

.prohealth-shell .prohealth-doctor-copy p:last-child {
  margin-top: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.prohealth-shell .section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.8rem;
}

.prohealth-shell .section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
}

.prohealth-shell .prohealth-feature-grid,
.prohealth-shell .prohealth-services-grid,
.prohealth-shell .prohealth-doctors-grid,
.prohealth-shell .prohealth-testimonial-grid {
  display: grid;
  gap: 1rem;
}

.prohealth-shell .prohealth-feature-grid,
.prohealth-shell .prohealth-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.prohealth-shell .prohealth-doctors-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prohealth-shell .prohealth-feature-card,
.prohealth-shell .prohealth-testimonial-card {
  padding: 1.45rem;
  border-radius: 26px;
}

.prohealth-shell .prohealth-service-card,
.prohealth-shell .prohealth-doctor-card {
  border-radius: 28px;
}

.prohealth-shell .prohealth-feature-card h3,
.prohealth-shell .prohealth-service-card h3,
.prohealth-shell .prohealth-cta-card h2 {
  font-size: 1.42rem;
  line-height: 1.1;
}

.prohealth-shell .prohealth-feature-card p,
.prohealth-shell .prohealth-service-card p,
.prohealth-shell .prohealth-testimonial-card p,
.prohealth-shell .prohealth-cta-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.68;
}

.prohealth-shell .prohealth-feature-icon,
.prohealth-shell .prohealth-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: rgba(47, 128, 237, 0.08);
  color: var(--blue-main);
}

.prohealth-shell .prohealth-feature-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prohealth-shell .prohealth-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.prohealth-shell .prohealth-service-card:hover,
.prohealth-shell .prohealth-feature-card:hover,
.prohealth-shell .prohealth-doctor-card:hover,
.prohealth-shell .prohealth-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.18);
  box-shadow: 0 22px 42px rgba(16, 54, 92, 0.1);
}

.prohealth-shell .prohealth-service-icon .service-icon-file {
  width: 1.7rem;
  height: 1.7rem;
}

.prohealth-shell .prohealth-doctor-card {
  padding: 1.3rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.prohealth-shell .prohealth-doctor-avatar {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #eaf3fb 0%, #d8e9f8 100%);
}

.prohealth-shell .prohealth-avatar-shape {
  position: absolute;
  inset: auto 18% 0;
  height: 84%;
  border-radius: 999px 999px 26px 26px;
  background:
    radial-gradient(circle at 50% 18%, #fff 0 14%, transparent 15%),
    linear-gradient(180deg, #b9d8f1 0%, #89b7dc 52%, #5f98c8 100%);
}

.prohealth-shell .prohealth-avatar-shape::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 34%;
  height: 18%;
  transform: translateX(-50%);
  border-radius: 999px 999px 40% 40%;
  background: linear-gradient(180deg, #2b3b4f 0%, #172536 100%);
}

.prohealth-shell .prohealth-doctor-card-body {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
}

.prohealth-shell .prohealth-doctor-name {
  font-size: 1.18rem;
  color: var(--blue-deep);
}

.prohealth-shell .prohealth-doctor-specialty {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.prohealth-shell .prohealth-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #f2b94b;
  font-size: 0.95rem;
}

.prohealth-shell .prohealth-rating strong {
  color: var(--blue-deep);
  font-size: 0.95rem;
}

.prohealth-shell .prohealth-testimonials {
  background: linear-gradient(180deg, #f4f8fc 0%, rgba(244, 248, 252, 0) 100%);
}

.prohealth-shell .prohealth-testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.prohealth-shell .prohealth-testimonial-head strong {
  display: block;
  color: var(--blue-deep);
}

.prohealth-shell .prohealth-testimonial-head span {
  color: var(--muted);
  font-size: 0.86rem;
}

.prohealth-shell .prohealth-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.12), rgba(47, 128, 237, 0.05));
  color: var(--blue-strong);
  font-weight: 800;
}

.prohealth-shell .prohealth-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 30px;
}

.prohealth-shell .prohealth-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.prohealth-shell .footer {
  padding: 2.2rem 0 2rem;
}

.prohealth-shell .footer-inner {
  gap: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(217, 229, 240, 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.94));
  box-shadow: 0 18px 40px rgba(16, 54, 92, 0.06);
}

.prohealth-shell .prohealth-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.prohealth-shell .prohealth-footer-brand {
  max-width: 30rem;
}

.prohealth-shell .footer-brand {
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.prohealth-shell .footer-tagline {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.prohealth-shell .prohealth-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.prohealth-shell .prohealth-footer-column {
  display: grid;
  gap: 0.72rem;
}

.prohealth-shell .prohealth-footer-column a,
.prohealth-shell .prohealth-footer-column span {
  color: var(--muted);
  line-height: 1.6;
  text-decoration: none;
}

.prohealth-shell .prohealth-footer-column a:hover {
  color: var(--blue-strong);
}

.prohealth-shell .footer-bottom {
  border-top-color: rgba(217, 229, 240, 0.9);
}

.prohealth-shell .copyright,
.prohealth-shell .footer-meta-note,
.prohealth-shell .footer-contact-label {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .prohealth-shell .prohealth-hero-grid,
  .prohealth-shell .prohealth-footer-grid,
  .prohealth-shell .prohealth-cta-card {
    grid-template-columns: 1fr;
  }

  .prohealth-shell .prohealth-feature-grid,
  .prohealth-shell .prohealth-testimonial-grid,
  .prohealth-shell .prohealth-services-grid,
  .prohealth-shell .prohealth-doctors-grid,
  .prohealth-shell .prohealth-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prohealth-shell .prohealth-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .prohealth-shell .prohealth-doctor-hero-card {
    grid-template-columns: 1fr;
  }

  .prohealth-shell .prohealth-doctor-photo {
    min-height: 18rem;
  }

  .prohealth-shell h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 8.2vw, 4rem);
  }

  .prohealth-shell .hero-lead {
    max-width: 100%;
  }

  .prohealth-shell .prohealth-hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .prohealth-shell .container {
    width: min(100%, calc(100% - 1rem));
  }

  .prohealth-shell .section {
    padding: 4rem 0;
  }

  .prohealth-shell .prohealth-feature-grid,
  .prohealth-shell .prohealth-testimonial-grid,
  .prohealth-shell .prohealth-services-grid,
  .prohealth-shell .prohealth-doctors-grid,
  .prohealth-shell .prohealth-footer-links {
    grid-template-columns: 1fr;
  }

  .prohealth-shell .prohealth-hero-copy,
  .prohealth-shell .prohealth-doctor-hero-card,
  .prohealth-shell .prohealth-cta-card,
  .prohealth-shell .footer-inner {
    padding: 1.3rem;
    border-radius: 24px;
  }

  .prohealth-shell .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }

  .prohealth-shell .prohealth-service-card {
    grid-template-columns: 1fr;
  }

  .prohealth-shell .prohealth-service-icon {
    margin-bottom: 0;
  }
}

@media (max-width: 420px) {
  .prohealth-shell .site-nav-shell {
    width: calc(100% - 0.7rem);
  }

  .prohealth-shell .site-nav {
    padding: 0.72rem 0.8rem;
    border-radius: 18px;
  }

  .prohealth-shell .nav-search-trigger {
    padding: 0.65rem;
  }

  .prohealth-shell .nav-search-trigger-text {
    display: none;
  }

  .prohealth-shell .hero {
    padding-top: 6rem;
  }

  .prohealth-shell h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .prohealth-shell .hero-lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .prohealth-shell .prohealth-feature-card,
  .prohealth-shell .prohealth-testimonial-card,
  .prohealth-shell .prohealth-service-card,
  .prohealth-shell .prohealth-doctor-card {
    border-radius: 22px;
  }

  .prohealth-shell .site-search-panel {
    top: 0.75rem;
    width: calc(100vw - 0.8rem);
    max-height: calc(100vh - 1.5rem);
    overflow: hidden;
  }
}
