/* DentAI dental landing — page-specific */

@import url("_dental-theme.css");
@import url("_dental-roi.css");
@import url("_dental-motion.css");

.dental-page {
  display: flex;
  justify-content: center;
  padding: 48px 32px 96px;
  background: var(--dental-bg);
  overflow-x: clip;
}

/* page layout */
.dental-page__inner {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.dental-page__inner > section {
  scroll-margin-top: 88px;
}

.dental-section--alt {
  padding-block: 64px;
  background-color: var(--dental-bg-alt);
  box-shadow: 0 0 0 100vmax var(--dental-bg-alt);
  clip-path: inset(0 -100vmax);
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--dental-bg-alt);
  border: 1px solid var(--dental-border);
  border-radius: 999px;
}

.badge__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.badge__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dental-text);
  white-space: nowrap;
}

.badge--dark {
  background: var(--dental-accent-dark);
  border-color: var(--dental-border);
}

.badge__text--light {
  color: #fff;
  font-weight: 500;
}

.badge__icon--light {
  width: 16px;
  height: 16px;
}

/* buttons */
.dental-page .btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.dental-page .btn--primary {
  height: 48px;
  padding: 0 20px;
  background: var(--dental-inverse-bg);
}

.dental-page .btn--primary:hover {
  background: var(--dental-inverse-hover);
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.2);
  transform: translateY(-1px);
}

.dental-page .btn--primary:active {
  background: var(--dental-inverse-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

.dental-page .btn--primary .btn__label {
  color: var(--dental-inverse-fg);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dental-page .btn--secondary {
  height: 48px;
  padding: 0 20px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
}

.dental-page .btn--secondary:hover {
  background: var(--dental-hover);
  border-color: var(--dental-border-strong);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.dental-page .btn--secondary:active {
  background: var(--dental-hover-strong);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

.dental-page .btn--secondary .btn__label {
  color: var(--dental-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dental-page .btn--outline {
  height: 48px;
  padding: 0 20px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
}

.dental-page .btn--outline .btn__label {
  color: var(--dental-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dental-page .btn--outline:hover {
  background: var(--dental-bg-alt);
  border-color: var(--dental-border-strong);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.dental-page .btn--outline:active {
  background: var(--dental-hover-strong);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

.dental-page .btn--light {
  height: 48px;
  padding: 0 24px;
  background: var(--dental-surface);
  border: 1px solid #fff;
}

.dental-page .btn--light .btn__label {
  color: var(--dental-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dental-page .btn--light:hover {
  background: var(--dental-bg-alt);
  border-color: #f3f3f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.dental-page .btn--light:active {
  background: var(--dental-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

.dental-page .btn--ghost {
  height: 48px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dental-page .btn--ghost .btn__label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.dental-page .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.dental-page .btn--ghost:active {
  background: transparent;
  transform: translateY(0);
}

.dental-page .btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* hero */
.dental-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.dental-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.dental-hero__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--dental-text);
}

.dental-hero__desc {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 28px;
  color: var(--dental-muted);
}

.dental-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.dental-hero__actions .btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--dental-inverse-bg);
  animation: hero-btn-attention 3.2s ease-in-out infinite;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.dental-hero__actions .btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: hero-btn-shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.dental-hero__actions .btn--primary .btn__label,
.dental-hero__actions .btn--primary .btn__icon {
  position: relative;
  z-index: 1;
}

.dental-hero__actions .btn--primary:hover,
.dental-hero__actions .btn--primary:focus-visible {
  background: var(--dental-inverse-hover);
  animation: none;
  box-shadow: 0 8px 24px rgba(9, 9, 11, 0.2);
  transform: translateY(-2px) scale(1.02);
}

.dental-hero__actions .btn--primary:hover::before,
.dental-hero__actions .btn--primary:focus-visible::before {
  animation: none;
  opacity: 0;
}

.dental-hero__actions .btn--primary:active {
  background: var(--dental-inverse-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transform: translateY(0) scale(1);
}

@keyframes hero-btn-attention {
  0%,
  100% {
    box-shadow:
      0 1px 2px rgba(0, 0, 0, 0.06),
      0 0 0 0 rgba(13, 148, 136, 0);
    transform: scale(1);
  }

  45% {
    box-shadow:
      0 6px 20px rgba(9, 9, 11, 0.14),
      0 0 0 4px rgba(13, 148, 136, 0.2),
      0 0 28px rgba(13, 148, 136, 0.18);
    transform: scale(1.025);
  }
}

@keyframes hero-btn-shine {
  0%,
  65%,
  100% {
    transform: translateX(-130%);
  }

  78% {
    transform: translateX(130%);
  }
}

.dental-hero__media {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.dental-hero__visual {
  position: absolute;
  inset: 0;
  background: var(--dental-hover-strong);
}

.dental-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dental-hero__visual-text {
  margin: 0;
  padding: 0 24px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dental-muted);
  text-align: center;
}

.dental-hero__callout {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--dental-callout-bg);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dental-hero__callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--dental-inverse-bg);
  border-radius: 999px;
}

.dental-hero__callout-icon img {
  width: 20px;
  height: 20px;
}

.dental-hero__callout-text {
  flex: 1;
  min-width: 0;
}

.dental-hero__callout-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--dental-text);
}

.dental-hero__callout-subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--dental-muted);
}

.dental-hero__callout-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

/* stats */
.dental-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 16px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.12);
  border-radius: 999px;
}

.stat-card:nth-child(2) .stat-card__icon {
  background: rgba(37, 99, 235, 0.1);
}

.stat-card:nth-child(3) .stat-card__icon {
  background: rgba(217, 119, 6, 0.1);
}

.stat-card:nth-child(4) .stat-card__icon {
  background: rgba(124, 58, 237, 0.1);
}

.stat-card__icon img {
  width: 20px;
  height: 20px;
}

.stat-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card__value {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: var(--dental-text);
}

.stat-card__label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--dental-muted);
}

/* steps */
.dental-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.dental-steps__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 640px;
  text-align: center;
}

.dental-steps__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.025em;
  color: var(--dental-text);
}

.dental-steps__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dental-muted);
}

.dental-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 238px;
  padding: 24px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 16px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.step-card:hover {
  border-color: var(--dental-border-strong);
  box-shadow:
    0 8px 16px -6px rgba(0, 0, 0, 0.08),
    0 4px 6px -4px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-card--active {
  border: 2px solid var(--dental-inverse-bg);
}

.step-card--active:hover {
  border-color: var(--dental-inverse-bg);
  box-shadow:
    0 12px 20px -8px rgba(9, 9, 11, 0.15),
    0 4px 6px -4px rgba(0, 0, 0, 0.08);
}

.step-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--dental-inverse-bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--dental-inverse-fg);
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.step-card__icon img {
  width: 20px;
  height: 20px;
}

.step-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.step-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--dental-text);
}

.step-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--dental-muted);
}

.step-card__time {
  margin: 0;
  margin-top: auto;
  padding-top: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dental-text);
}

/* features */
.dental-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.dental-features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  text-align: center;
}

.dental-features__title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.dental-features__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dental-muted);
}

.dental-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.capability-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 252px;
  padding: 28px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 24px;
}

.capability-card--muted {
  background: var(--dental-surface-2);
}

.capability-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.capability-card__icon--teal {
  background: rgba(13, 148, 136, 0.12);
}

.capability-card__icon--amber {
  background: rgba(234, 179, 8, 0.16);
}

.capability-card__icon--purple {
  background: rgba(124, 58, 237, 0.1);
}

.capability-card__icon--blue {
  background: rgba(37, 99, 235, 0.1);
}

.capability-card__icon--neutral {
  background: var(--dental-bg-alt);
}

.capability-card__icon--dark {
  background: var(--dental-accent-dark-muted);
}

.capability-card__icon img {
  width: 20px;
  height: 20px;
}

.capability-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--dental-text);
}

.capability-card__desc {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 22px;
  color: var(--dental-muted);
}

.capability-card__tag {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.capability-card__tag--teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.capability-card__tag--purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.capability-card__tag--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.capability-card--dark {
  background: var(--dental-accent-dark);
  border-color: var(--dental-accent-dark);
}

.capability-card--dark .capability-card__title {
  color: #fff;
}

.capability-card--dark .capability-card__desc {
  color: var(--dental-subtle);
}

.capability-card--dark .capability-card__tag {
  background: var(--dental-accent-dark-muted);
  color: #fff;
}

.capability-card--analytics .capability-card__desc {
  flex: 0;
}

.capability-card__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 108px;
  height: 56px;
  margin-top: auto;
}

.capability-card__bar {
  flex: 1;
  height: var(--h);
  min-height: 10px;
  border-radius: 6px 6px 0 0;
}

.capability-card__bar--light {
  background: #e4e4e7;
}

.capability-card__bar--mid {
  background: #a1a1aa;
}

.capability-card__bar--dark {
  background: var(--dental-accent-dark);
}

.dental-features__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.dental-features__actions .btn--outline,
.dental-features__actions .btn--primary {
  min-width: 180px;
  height: 48px;
  padding: 0 24px;
}

/* integration */
.dental-integration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 48px;
  background: var(--dental-bg-alt);
  border-radius: 24px;
}

.dental-integration__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.dental-integration__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.025em;
  color: var(--dental-text);
}

.dental-integration__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dental-muted);
}

.dental-integration__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.dental-integration__call {
  width: 100%;
  justify-content: center;
}

.dental-integration__note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.14);
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(9, 9, 11, 0.1);
  border-radius: 999px;
}

.feature-item__icon img {
  width: 14px;
  height: 14px;
}

.feature-item__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #17171a;
}

.sync-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 16px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

.sync-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(9, 9, 11, 0.06) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 1;
}

.sync-panel--visible {
  animation: sync-panel-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sync-panel--syncing::before {
  animation: sync-panel-shimmer 1.1s ease-in-out;
}

.sync-panel--visible .sync-panel__header,
.sync-panel--visible .appointment-row {
  animation: sync-item-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.sync-panel--visible .sync-panel__header {
  animation-delay: 0.12s;
}

.sync-panel--visible .appointment-row:nth-child(1) {
  animation-delay: 0.22s;
}

.sync-panel--visible .appointment-row:nth-child(2) {
  animation-delay: 0.32s;
}

.sync-panel--visible .appointment-row:nth-child(3) {
  animation-delay: 0.42s;
}

.sync-panel--syncing .appointment-row--new {
  animation: sync-new-highlight 1.1s ease-in-out;
}

.sync-panel__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sync-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sync-panel__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--dental-inverse-bg);
  border-radius: 12px;
}

.sync-panel--visible .sync-panel__logo {
  animation: sync-logo-pulse 2.4s ease-in-out 0.8s infinite;
}

.sync-panel__logo img {
  width: 20px;
  height: 20px;
}

.sync-panel__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--dental-text);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 8px;
  background: rgba(9, 9, 11, 0.1);
  border: 1px solid var(--dental-border);
  border-radius: 999px;
  flex-shrink: 0;
}

.status-badge__dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--dental-inverse-bg);
  border-radius: 999px;
  flex-shrink: 0;
}

.sync-panel--visible .status-badge__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(9, 9, 11, 0.35);
  animation: sync-dot-ring 2s ease-out 1s infinite;
}

.status-badge__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dental-text);
}

.sync-panel__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.appointment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--dental-bg-alt);
  border-radius: 12px;
}

.appointment-row--new {
  background: rgba(9, 9, 11, 0.05);
  border: 1px solid rgba(9, 9, 11, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sync-panel--visible .appointment-row--new {
  animation:
    sync-item-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.42s backwards,
    sync-new-glow 3s ease-in-out 1.2s infinite;
}

.sync-panel--visible .appointment-row--new .appointment-row__avatar {
  animation: sync-sparkle 2.8s ease-in-out 1.4s infinite;
}

.appointment-row:not(.appointment-row--new) {
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.sync-panel--visible .appointment-row:not(.appointment-row--new):hover {
  transform: translateX(3px);
  background: var(--dental-hover-strong);
}

.appointment-row__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.appointment-row__avatar {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.appointment-row__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #17171a;
}

.appointment-row__time {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--dental-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.appointment-row--new .appointment-row__time {
  font-size: 12px;
  line-height: 16px;
}

/* Cliniccards schedule widget */
.cc-schedule {
  gap: 0;
  padding: 0;
  opacity: 1;
  transform: none;
  overflow: hidden;
  min-width: 0;
}

.cc-schedule::before {
  display: none;
}

.cc-schedule__toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 12px 10px;
  background: #f7fbfd;
  border-bottom: 1px solid #dbe7ef;
}

.cc-schedule__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc-schedule__tab {
  padding: 6px 10px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: #64748b;
  cursor: default;
}

.cc-schedule__tab--active {
  background: #fff;
  color: #0f766e;
  box-shadow: inset 0 -2px 0 #0d9488;
}

.cc-schedule__tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cc-schedule__icon-btn,
.cc-schedule__date {
  border: 0;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.cc-schedule__icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #334155;
  font-size: 18px;
  line-height: 1;
}

.cc-schedule__icon-btn:hover {
  background: #eef6f8;
}

.cc-schedule__date {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.cc-schedule__board {
  position: relative;
  background: #fff;
  overflow: auto;
  max-height: 430px;
}

.cc-schedule__grid {
  min-width: 360px;
}

.cc-schedule__columns-head {
  display: grid;
  grid-template-columns: 52px repeat(2, minmax(0, 1fr));
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.cc-schedule__corner {
  min-height: 36px;
}

.cc-schedule__col-head {
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: #475569;
  text-align: center;
  border-left: 1px solid #edf2f7;
}

.cc-schedule__columns-body {
  position: relative;
  display: grid;
  grid-template-columns: 52px repeat(2, minmax(0, 1fr));
}

.cc-schedule__times {
  border-right: 1px solid #edf2f7;
}

.cc-schedule__time {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px 8px 0 0;
  font-size: 10px;
  line-height: 1;
  color: #94a3b8;
  box-sizing: border-box;
}

.cc-schedule__column {
  position: relative;
  border-left: 1px solid #edf2f7;
  background:
    linear-gradient(to bottom, transparent calc(100% - 1px), #f1f5f9  calc(100% - 1px));
  background-size: 100% 52px;
}

.cc-schedule__slot {
  box-sizing: border-box;
}

.cc-schedule__now {
  position: absolute;
  left: 52px;
  right: 0;
  height: 2px;
  background: #ef4444;
  z-index: 4;
  pointer-events: none;
}

.cc-schedule__now::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
}

.cc-block {
  position: absolute;
  left: 4px;
  right: 4px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 8px;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  color: #0f172a;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.cc-block--muted {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: #64748b;
}

.cc-block--agent {
  background: #ecfdf5;
  border-color: #6ee7b7;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
}

.cc-block--new {
  animation: cc-block-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-block__time {
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  color: #475569;
}

.cc-block__title {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-block__note {
  margin-top: 2px;
  font-size: 10px;
  line-height: 13px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-block__badge {
  display: inline-flex;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #059669;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
}

.cc-schedule__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #e2e8f0;
  background: #fafafa;
}

.cc-schedule__status {
  margin: 0;
  font-size: 11px;
  line-height: 16px;
  color: #64748b;
}

.cc-schedule__status[data-tone="live"] {
  color: #0f766e;
}

.cc-schedule__status[data-tone="agent"] {
  color: #047857;
  font-weight: 600;
}

.cc-schedule__status[data-tone="error"] {
  color: #dc2626;
}

.cc-schedule__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

@keyframes cc-block-pop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(6px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes sync-panel-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sync-panel-shimmer {
  to {
    transform: translateX(120%);
  }
}

@keyframes sync-item-enter {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

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

@keyframes sync-logo-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(9, 9, 11, 0.2);
  }

  14% {
    transform: scale(1.04);
    box-shadow: 0 0 0 6px rgba(9, 9, 11, 0);
  }

  28% {
    transform: scale(1);
  }
}

@keyframes sync-dot-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes sync-new-glow {
  0%,
  100% {
    border-color: rgba(9, 9, 11, 0.2);
    box-shadow: none;
  }

  50% {
    border-color: rgba(9, 9, 11, 0.45);
    box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.06);
  }
}

@keyframes sync-new-highlight {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.015);
    box-shadow: 0 8px 20px rgba(9, 9, 11, 0.08);
    border-color: rgba(9, 9, 11, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@keyframes sync-sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  35% {
    transform: scale(1.12) rotate(-8deg);
    opacity: 1;
  }

  55% {
    transform: scale(1.05) rotate(6deg);
    opacity: 0.85;
  }
}

/* case study */
.badge--case {
  background: var(--dental-surface);
  border-color: #fff;
}

.badge--case .badge__text {
  color: var(--dental-text);
  font-weight: 600;
}

.dental-case {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--dental-accent-dark);
  border-radius: 24px;
}

.dental-case__media {
  min-width: 0;
}

.dental-case__photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
}

.dental-case__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

.dental-case__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.025em;
  color: #fff;
}

.dental-case__divider {
  width: 40px;
  height: 3px;
  margin-top: -8px;
  background: #fff;
  border-radius: 999px;
}

.dental-case__subtitle {
  margin: -16px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #fff;
}

.dental-case__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dental-subtle);
}

.dental-case__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: #1c1c1c;
  border-radius: 12px;
}

.metric-card__value {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #fff;
}

.metric-card__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dental-subtle);
}

.dental-case__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.dental-case__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.dental-case__author-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
}

.dental-case__author-role {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dental-subtle);
}

/* fit / honesty */
.dental-fit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.dental-fit__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}

.dental-fit__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.dental-fit__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dental-muted);
}

.dental-fit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.fit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 24px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.fit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.12);
  border-radius: 14px;
}

.fit-card__icon img {
  width: 20px;
  height: 20px;
}

.fit-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--dental-text);
}

.fit-card__desc {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 22px;
  color: var(--dental-muted);
}

.fit-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 12px;
  background: var(--dental-bg-alt);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #52525b;
}

.fit-card__tag img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.fit-banner__icon img {
  width: 22px;
  height: 22px;
}

.fit-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  background: #18181b;
  border-radius: 20px;
}

.fit-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--dental-accent-dark-muted);
  border-radius: 14px;
}

.fit-banner__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 22px;
  color: #d4d4d8;
}

.fit-banner__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}

.fit-banner__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* faq */
.dental-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: center;
}

.dental-faq__sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 32px;
}

.dental-faq__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.dental-faq__intro {
  margin: -8px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dental-muted);
}

.dental-faq__card {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.dental-faq__card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dental-faq__card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 48px 20px 20px;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.85) 100%);
}

.dental-faq__card-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
}

.dental-faq__card-role {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #d4d4d8;
}

.dental-faq__support {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dental-faq__support-label {
  font-size: 14px;
  line-height: 20px;
  color: var(--dental-muted);
}

.dental-faq__support-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--dental-text);
}

.dental-faq__cta {
  width: 100%;
}

.dental-faq__content {
  min-width: 0;
}

.dental-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--dental-bg-alt);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item__btn {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 20px 20px 16px;
  cursor: pointer;
}

.faq-item__btn:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
}

.faq-item__num {
  flex-shrink: 0;
  width: 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--dental-muted);
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: var(--dental-text);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--dental-muted);
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.faq-item.is-open .faq-item__body {
  max-height: 240px;
  opacity: 1;
}

.faq-item__answer {
  margin: 0;
  padding: 0 20px 20px 60px;
  font-size: 14px;
  line-height: 22px;
  color: var(--dental-muted);
}

/* cta */
.dental-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 48px;
  background: var(--dental-accent-dark);
  border-radius: 24px;
  text-align: center;
}

.dental-cta__title {
  margin: 0;
  max-width: 640px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.dental-cta__desc {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dental-subtle);
}

.dental-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

/* pricing */
.dental-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.dental-pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}

.dental-pricing__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.dental-pricing__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dental-muted);
}

.dental-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 24px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.price-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #115e59;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
}

.price-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dental-bg-alt);
  border-radius: 14px;
}

.price-card__icon--dark {
  background: var(--dental-accent-dark-muted);
}

.price-card__icon img {
  width: 20px;
  height: 20px;
}

.price-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--dental-text);
}

.price-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--dental-muted);
}

.price-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  padding-top: 4px;
}

.price-card__amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.price-card__period {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--dental-muted);
}

.price-card__divider {
  width: 100%;
  height: 1px;
  background: #e4e4e7;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: var(--dental-text);
}

.price-card__check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.price-card__check--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 0;
  background: var(--dental-accent-dark-muted);
  border-radius: 999px;
}

.price-card__check--light img {
  width: 12px;
  height: 12px;
}

.price-card__full-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #4a8076;
  text-decoration: underline;
  transition: color 0.18s ease;
}

.price-card__full-link:hover {
  color: #3d6b62;
}

.price-card__full-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #ecf3f2;
  border-radius: 10px;
  transition: background-color 0.18s ease;
}

.price-card__full-link-icon img {
  width: 16px;
  height: 16px;
}

.price-card--featured .price-card__full-link-icon {
  background: rgba(74, 128, 118, 0.14);
}

.price-card--featured .price-card__full-link:hover .price-card__full-link-icon {
  background: rgba(74, 128, 118, 0.2);
}

.price-card--featured .price-card__full-link {
  color: #6d9d95;
}

.price-card--featured .price-card__full-link-icon img {
  filter: brightness(1.28);
}

.price-card--featured .price-card__full-link:hover {
  color: #85b5ac;
}

.price-card__btn {
  width: 100%;
  margin-top: auto;
}

.price-card--featured {
  overflow: hidden;
  background: var(--dental-accent-dark);
  border-color: var(--dental-accent-dark);
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.18);
}

.price-card--featured::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, rgba(13, 148, 136, 0) 68%);
  pointer-events: none;
}

.price-card--featured .price-card__title,
.price-card--featured .price-card__feature {
  color: #fff;
}

.price-card--featured .price-card__desc,
.price-card--featured .price-card__period {
  color: var(--dental-subtle);
}

.price-card--featured .price-card__amount {
  color: #fff;
}

.price-card--featured .price-card__divider {
  background: var(--dental-accent-dark-muted);
}

.dental-pricing__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--dental-muted);
  text-align: center;
}

.dental-pricing__note-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* pricing compare table */
.pricing-compare {
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-compare__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.pricing-compare__title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dental-text);
}

.pricing-compare__subtitle {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dental-muted);
}

.pricing-compare__scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--dental-border);
  border-radius: 20px;
  background: var(--dental-surface);
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.pricing-compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-compare__table thead th {
  padding: 18px 20px;
  text-align: left;
  vertical-align: bottom;
  font-size: 13px;
  font-weight: 600;
  color: var(--dental-text);
  background: var(--dental-bg-alt);
  border-bottom: 1px solid var(--dental-border);
}

.pricing-compare__table thead th:first-child {
  width: 28%;
  min-width: 200px;
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--dental-bg-alt);
}

.pricing-compare__table tbody th,
.pricing-compare__table tbody td {
  padding: 16px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--dental-border);
}

.pricing-compare__table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 200px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: var(--dental-text);
  background: var(--dental-surface);
}

.pricing-compare__table tbody td {
  color: var(--dental-muted);
  background: var(--dental-surface);
}

.pricing-compare__table tbody tr:last-child th,
.pricing-compare__table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-compare__table tbody tr:nth-child(even) td,
.pricing-compare__table tbody tr:nth-child(even) th {
  background: rgba(236, 243, 242, 0.35);
}

.pricing-compare__col--pro {
  background: rgba(15, 118, 110, 0.08) !important;
}

.pricing-compare__plan {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-compare__price {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
  font-size: 12px;
  font-weight: 600;
}

.pricing-compare__col--pro .pricing-compare__price {
  background: rgba(15, 118, 110, 0.18);
}

/* reviews slider */
.dental-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.dental-reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}

.dental-reviews__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dental-text);
}

.dental-reviews__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 26px;
  color: var(--dental-muted);
}

.review-slider {
  position: relative;
  width: 100%;
  padding: 0 56px;
}

.review-slider__frame {
  overflow: hidden;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 24px;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-slider__viewport {
  overflow: hidden;
}

.review-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  flex: 0 0 100%;
  min-width: 0;
  height: 600px;
}

.review-slide__media {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #18181b;
}

.review-slide__poster {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.review-slide__media-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.review-slide__handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(9, 9, 11, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
}

.review-slide__reels {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ef4444;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}

.review-slide__reels-dot {
  width: 6px;
  height: 6px;
  background: var(--dental-surface);
  border-radius: 999px;
}

.review-slide__play {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--dental-surface);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-slide__play::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.review-slide__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--dental-inverse-bg);
}

.review-slide__play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.review-slide__play:hover::before {
  background: rgba(255, 255, 255, 0.34);
}

.review-slide__media-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.88) 100%);
}

.review-slide__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.review-slide__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.review-slide__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
}

.review-slide__role {
  font-size: 12px;
  line-height: 16px;
  color: #d4d4d8;
}

.review-slide__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.review-slide__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
}

.review-slide__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  height: 100%;
  padding: 32px;
}

.review-slide__content-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-slide__rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.review-slide__quote-mark {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: #e4e4e7;
}

.review-slide__quote {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: var(--dental-text);
}

.review-slide__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid #e4e4e7;
}

.review-slide__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-slide__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--dental-bg-alt);
  border-radius: 10px;
}

.review-slide__highlight-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--dental-text);
}

.review-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.review-slider__nav {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--dental-surface);
  border: 1px solid var(--dental-border);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.review-slider__nav:hover:not(:disabled) {
  background: var(--dental-bg-alt);
  transform: translateY(calc(-50% - 1px));
}

.review-slider__nav--prev {
  left: 0;
}

.review-slider__nav--next {
  right: 0;
}

.review-slider__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.review-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-slider__dot {
  all: unset;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  background: #d4d4d8;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.review-slider__dot.is-active {
  width: 28px;
  background: var(--dental-inverse-bg);
}

.review-slider__dot:disabled {
  cursor: default;
}

.review-slider--single .review-slider__nav,
.review-slider--single .review-slider__dots {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .sync-panel,
  .sync-panel::before,
  .sync-panel__logo,
  .status-badge__dot::after,
  .appointment-row,
  .appointment-row--new,
  .appointment-row--new .appointment-row__avatar,
  .faq-item__body,
  .faq-item__icon,
  .review-slider__track {
    animation: none !important;
    transition: none !important;
  }

  .sync-panel {
    opacity: 1;
    transform: none;
  }

  .faq-item__body {
    max-height: none;
    opacity: 1;
  }

  .faq-item:not(.is-open) .faq-item__body {
    display: none;
  }
}

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

  .dental-hero__media {
    min-height: 320px;
  }

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

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

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

  .dental-integration {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .dental-case {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .dental-case__photo {
    min-height: 280px;
  }

  .dental-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dental-pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing-compare {
    margin-top: 32px;
  }

  .pricing-compare__table thead th,
  .pricing-compare__table tbody th,
  .pricing-compare__table tbody td {
    padding: 14px 16px;
  }

  .pricing-compare__table {
    min-width: 640px;
    font-size: 13px;
  }

  .dental-fit__grid {
    grid-template-columns: 1fr;
  }

  .fit-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .fit-banner__icon {
    margin: 0 auto;
  }

  .fit-banner__btn {
    width: 100%;
  }

  .dental-faq__sidebar {
    position: static;
  }

  .review-slider {
    padding: 0;
  }

  .review-slider__nav {
    display: none;
  }

  .review-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .review-slide__media {
    height: 260px;
    min-height: 260px;
  }

  .review-slide__content {
    height: auto;
  }
}

@media (max-width: 768px) {
  .dental-page {
    padding: 40px 20px 72px;
  }

  .dental-page__inner {
    gap: 72px;
  }

  .dental-section--alt {
    padding-block: 56px;
  }

  .dental-hero__media {
    order: -1;
  }

  .dental-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .dental-hero__actions .btn {
    width: 100%;
  }

  .dental-hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .dental-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .review-slide__media {
    height: 240px;
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .dental-page {
    padding: 32px 16px 64px;
  }

  .dental-page__inner {
    gap: 56px;
  }

  .dental-section--alt {
    padding-block: 48px;
  }

  .dental-hero__actions {
    width: 100%;
  }

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

  .dental-steps__grid {
    grid-template-columns: 1fr;
  }

  .dental-steps__title {
    font-size: 26px;
    line-height: 32px;
  }

  .dental-features__grid {
    grid-template-columns: 1fr;
  }

  .dental-fit__title {
    font-size: 26px;
  }

  .fit-card {
    padding: 22px;
  }

  .fit-banner {
    padding: 22px 20px;
  }

  .dental-features__title {
    font-size: 26px;
  }

  .dental-features__actions {
    flex-direction: column;
    width: 100%;
  }

  .dental-features__actions .btn {
    width: 100%;
  }

  .dental-integration {
    padding: 24px;
  }

  .dental-integration__title {
    font-size: 26px;
    line-height: 32px;
  }

  .dental-case {
    padding: 24px;
    gap: 24px;
  }

  .dental-case__title {
    font-size: 26px;
    line-height: 32px;
  }

  .dental-case__subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .dental-case__metrics {
    grid-template-columns: 1fr;
  }

  .dental-faq__title {
    font-size: 26px;
  }

  .faq-item__btn {
    padding: 16px;
    gap: 12px;
  }

  .faq-item__answer {
    padding: 0 16px 16px 52px;
  }

  .dental-cta {
    padding: 40px 24px;
    gap: 20px;
  }

  .dental-cta__title {
    font-size: 26px;
  }

  .dental-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .dental-cta__actions .btn {
    width: 100%;
  }

  .price-card__badge {
    position: static;
    align-self: flex-start;
  }

  .price-card--featured {
    order: -1;
  }

  .review-slide__content {
    padding: 24px;
  }

  .review-slide__media {
    height: 220px;
    min-height: 220px;
  }

  .review-slide__actions {
    flex-direction: column;
  }

  .review-slide__actions .btn {
    width: 100%;
  }

  .appointment-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .dental-hero__callout {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }
}

/* Dark mode — dental page tweaks (after base rules) */

