html { scroll-behavior: smooth; }
:root {
  --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-premium: 750ms;
  --dur-premium-fast: 500ms;

  /* Heavy Luxury motion (buttons + cards) */
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --dur-luxury: 800ms;
  --dur-luxury-fast: 800ms;
}

@keyframes cinematic-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes cinematic-text {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-main-reveal {
  will-change: transform, opacity;
  animation: cinematic-reveal 1.4s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.hero-main-stage {
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-main-img {
  transform: translate3d(0, -35px, 0) rotate(3deg) scale(1.2);
  transform-origin: center;
  will-change: transform, opacity, filter;
  transition:
    transform 1.15s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .hero-main-stage:hover {
    transform: translate3d(0, -3px, 0) scale(1.014);
  }

  .hero-main-stage:hover .hero-main-img {
    transform: translate3d(0, -36px, 0) rotate(2.7deg) scale(1.216);
    filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.38));
  }
}

.hero-text-reveal {
  will-change: transform, opacity;
  animation: cinematic-text 1s cubic-bezier(0.2, 1, 0.3, 1) both;
  animation-delay: 0.2s;
}
.ease-premium {
  transition:
    transform var(--dur-premium) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium),
    filter var(--dur-premium-fast) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium);
}
.premium-button {
  position: relative;
  isolation: isolate;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    opacity var(--dur-luxury-fast) var(--ease-luxury);
}
.premium-button > * {
  position: relative;
  z-index: 1;
}
.premium-button::before {
  content: "";
  position: absolute;
  inset: -60%;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 30% 25%, rgba(232, 237, 242, 0.22), transparent 70%),
    radial-gradient(35% 35% at 75% 70%, rgba(192, 192, 192, 0.16), transparent 72%);
  filter: blur(16px);
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    transform var(--dur-luxury) var(--ease-luxury);
  z-index: 0;
}
.premium-button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(232, 237, 242, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-luxury) var(--ease-luxury);
  z-index: 0;
}
.premium-button:hover {
  transform: translate3d(0, 0, 0) scale(1.03);
}
.premium-button:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.premium-button:hover::after {
  transform: scaleX(1);
}
.premium-link {
  opacity: 0.86;
  transform: translateY(0);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium);
}
.premium-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.menu-link {
  position: relative;
}
.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(192, 192, 192, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-premium) var(--ease-premium);
}
.menu-link:hover::after {
  transform: scaleX(1);
}
.premium-card {
  opacity: 0.94;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    box-shadow var(--dur-luxury-fast) var(--ease-luxury);
}
.premium-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(45% 45% at 25% 20%, rgba(232, 237, 242, 0.14), transparent 70%),
    radial-gradient(40% 40% at 75% 70%, rgba(192, 192, 192, 0.10), transparent 72%);
  filter: blur(22px);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    transform var(--dur-luxury) var(--ease-luxury);
}
.premium-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(232, 237, 242, 0.16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-luxury) var(--ease-luxury);
}
.premium-card:hover {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}
.premium-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.premium-card:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  translate: 0 14px;
  will-change: opacity, translate;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), translate 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-main-reveal,
  .hero-text-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-main-stage,
  .hero-main-img {
    transition: none !important;
    filter: none !important;
  }
  .logo-link,
  .logo-link img {
    transition: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

.field-error {
  border-color: rgba(192, 192, 192, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.06);
}

.metal-icon {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  -webkit-user-drag: none;
}

.metal-icon-lg {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  -webkit-user-drag: none;
}

.metal-icon-xl {
  width: 3.55rem;
  height: 3.55rem;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.48));
  -webkit-user-drag: none;
}

.product-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: contrast(1.03) brightness(0.96);
}

.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-card-action {
  min-height: 2.75rem;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.24);
  background: rgba(10, 10, 10, 0.22);
  color: rgba(232, 237, 242, 0.88);
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium);
}

.product-card-action:hover,
.product-card-action:focus-visible {
  color: rgba(232, 237, 242, 1);
  border-color: rgba(232, 237, 242, 0.38);
  background: rgba(16, 17, 20, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translate3d(0, -1px, 0);
  outline: none;
}

.platform-modal-media {
  min-height: 260px;
}

.platform-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  margin: 0 auto;
}

.platform-modal-copy {
  min-width: 0;
}

.platform-modal-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.platform-modal-copy li {
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 1rem;
  background: rgba(9, 10, 12, 0.36);
  padding: 0.9rem 1rem;
  color: rgba(232, 237, 242, 0.82);
  line-height: 1.45;
}

.list-marker-icon {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
  opacity: 0.9;
}

.regional-partners-image {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
}

.about-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(0.9) saturate(0.86);
}

.company-gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.company-gallery-track::-webkit-scrollbar {
  display: none;
}

.company-gallery-card {
  flex: 0 0 86%;
  scroll-snap-align: start;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .company-gallery-card {
    flex-basis: calc(50% - 0.5rem);
  }
}

@media (min-width: 1280px) {
  .company-gallery-track {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
    gap: 1.25rem;
    scroll-snap-type: none;
  }

  .company-gallery-card {
    flex: none;
  }
}

.certificate-preview-image {
  filter: brightness(0.72) contrast(0.9) saturate(0.86);
}

.map-placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(0.9);
}

.company-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.company-video-cover {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: brightness(0.66) contrast(0.95) saturate(0.64);
}

.company-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(8, 9, 11, 0.55) 0%, rgba(8, 9, 11, 0.28) 55%, rgba(8, 9, 11, 0.65) 100%),
    radial-gradient(42% 36% at 52% 55%, rgba(232, 237, 242, 0.08) 0%, transparent 74%);
}

.company-video-trigger {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 237, 242, 0.5);
  color: rgba(232, 237, 242, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 14, 0.35);
  box-shadow:
    0 0 0 0.35rem rgba(232, 237, 242, 0.08),
    0 12px 22px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium);
}

.company-video-trigger:hover {
  transform: scale(1.05);
  border-color: rgba(232, 237, 242, 0.72);
  box-shadow:
    0 0 0 0.45rem rgba(232, 237, 242, 0.1),
    0 14px 26px rgba(0, 0, 0, 0.4);
}

.company-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) contrast(0.92) saturate(0.72);
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(232, 237, 242, 0.08),
    inset 0 -14px 26px rgba(0, 0, 0, 0.25),
    0 10px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium);
}

.partner-card:hover {
  transform: translate3d(0, -6px, 0) scale(1.01);
  border-color: rgba(232, 237, 242, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(232, 237, 242, 0.15),
    inset 0 -10px 22px rgba(0, 0, 0, 0.2),
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(192, 192, 192, 0.14);
}

.partner-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: brightness(0.72) saturate(0) contrast(1.08);
  transition:
    filter var(--dur-premium-fast) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium);
}

.partner-card:hover .partner-logo {
  filter: brightness(1) saturate(0) contrast(1.16);
}

.partner-caption {
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 237, 242, 0.58);
}

.wa-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.28);
  color: rgba(232, 237, 242, 0.9);
  background: linear-gradient(145deg, rgba(15, 17, 20, 0.95) 0%, rgba(10, 11, 14, 0.95) 100%);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium);
}

.wa-icon-link:hover {
  transform: scale(1.06);
  border-color: rgba(232, 237, 242, 0.58);
  color: rgba(242, 243, 244, 1);
}

.wa-icon-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.cta-geo-wrap {
  position: relative;
  background: transparent;
  transform: none;
}

.cta-left-block {
  transform: none;
}

.cta-grid-body {
  transform: translateY(10px);
}

.cta-title {
  transform: translateY(-10px);
}

.cta-consent-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 5px;
  border-radius: 2px;
  border: 1px solid rgba(192, 192, 192, 0.45);
  background: #ffffff;
  position: relative;
}

.cta-consent-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 0.11rem;
  top: -0.02rem;
  width: 0.1rem;
  height: 0.2rem;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg);
}

.cta-consent-checkbox:disabled {
  opacity: 1;
}

.cta-geo-media {
  transition:
    transform var(--dur-premium) var(--ease-premium),
    filter var(--dur-premium-fast) var(--ease-premium);
  will-change: transform;
}

.cta-geo-wrap:hover .cta-geo-media {
  transform: scale(1.022);
  filter: brightness(1.02);
}

.cta-geo-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.04) saturate(0.9);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cta-delivery-note {
  margin: 0.4rem auto 0;
  width: fit-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: rgba(232, 237, 242, 0.84);
  font-size: 0.98rem;
  line-height: 1;
  padding: 0;
  display: inline-block;
  transform: translate(30px, -10px);
}

.cta-delivery-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(232, 237, 242, 0.95);
  box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.3);
  animation: ctaPulse 2.2s ease-out infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.28);
  }
  70% {
    box-shadow: 0 0 0 0.62rem rgba(232, 237, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 237, 242, 0);
  }
}

@media (max-width: 767px) {
  .company-video-overlay {
    justify-content: flex-start;
  }

  .cta-geo-image {
    min-height: 240px;
  }

  .cta-delivery-note {
    width: auto;
    transform: translate(0, -6px);
  }

  .cta-geo-wrap {
    transform: none;
  }

  .cta-left-block {
    transform: none;
  }
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: rgba(232, 237, 242, 0.72);
  flex: 0 0 auto;
}

.contact-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.08) saturate(0.5);
}

.contact-map-shell {
  flex: 1 1 auto;
}

.contact-map-viewport {
  position: relative;
  min-height: 220px;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(145deg, rgba(8, 10, 12, 0.82) 0%, rgba(8, 10, 12, 0.28) 32%, rgba(8, 10, 12, 0.52) 100%),
    #0b0d0f;
}

.contact-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0.38) 0%, rgba(7, 9, 10, 0.18) 22%, rgba(7, 9, 10, 0.32) 100%),
    linear-gradient(135deg, rgba(5, 7, 9, 0.34) 0%, rgba(5, 7, 9, 0.14) 48%, rgba(5, 7, 9, 0.42) 100%);
}

@media (max-width: 767px) {
  .contact-map-viewport {
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }
}

.fact-orbit {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  width: 8.25rem;
  height: 8.25rem;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(35% 35% at 50% 50%, rgba(242, 243, 244, 0.22) 0%, transparent 72%),
    radial-gradient(30% 30% at 20% 42%, rgba(208, 210, 214, 0.18) 0%, transparent 75%),
    radial-gradient(30% 30% at 80% 42%, rgba(208, 210, 214, 0.18) 0%, transparent 75%),
    radial-gradient(30% 30% at 50% 16%, rgba(208, 210, 214, 0.16) 0%, transparent 75%),
    radial-gradient(30% 30% at 50% 84%, rgba(208, 210, 214, 0.16) 0%, transparent 75%);
  filter: blur(0.2px);
}

.fact-orbit-strong {
  right: -0.5rem;
  top: -0.5rem;
  width: 10.25rem;
  height: 10.25rem;
  opacity: 0.5;
}

#implant-anatomy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#product-catalog {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#products {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#implant-anatomy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#product-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#implant-anatomy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#product-catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#products::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#implant-anatomy > * {
  position: relative;
  z-index: 1;
}

#product-catalog > * {
  position: relative;
  z-index: 1;
}

#products > * {
  position: relative;
  z-index: 1;
}

.anatomy-surface {
  position: relative;
}

.anatomy-visual-stage {
  position: relative;
  isolation: isolate;
}

.anatomy-visual-stage::before {
  content: "";
  position: absolute;
  inset: -8% -10% -2%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 28% at 58% 22%, rgba(232, 237, 242, 0.13) 0%, transparent 74%),
    radial-gradient(34% 30% at 50% 72%, rgba(192, 192, 192, 0.09) 0%, transparent 72%);
  filter: blur(34px);
}

.anatomy-stage {
  position: relative;
  z-index: 1;
  min-height: 620px;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.anatomy-card {
  position: relative;
  overflow: visible !important;
  z-index: 5;
}

.anatomy-implant-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.06) brightness(1.02);
}

.anatomy-node {
  position: absolute;
  z-index: 6;
}

.anatomy-hotspot {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 243, 244, 0.86);
  background: rgba(10, 11, 14, 0.84);
  box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.35);
  transition:
    transform 380ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 380ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 380ms cubic-bezier(0.25, 1, 0.5, 1);
  animation: hotspotGlow 2.3s ease-in-out infinite;
}

.anatomy-hotspot::before,
.anatomy-hotspot::after {
  content: "";
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
  border-radius: 999px;
}

.anatomy-hotspot::before {
  width: 0.72rem;
  height: 0.72rem;
  background: #eef1f5;
}

.anatomy-hotspot::after {
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(242, 243, 244, 0.56);
  animation: anatomyPulse 2s ease-out infinite;
}

.anatomy-node.is-active .anatomy-hotspot {
  transform: scale(1.07);
  border-color: rgba(242, 243, 244, 0.9);
  box-shadow: 0 0 0 0.55rem rgba(232, 237, 242, 0.12);
}

.anatomy-link {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  height: 1px;
  background: rgba(232, 237, 242, 0.45);
  transform-origin: left center;
  transform: rotate(var(--line-rot, 0deg)) scaleX(0);
  opacity: 0;
  transition:
    transform 440ms cubic-bezier(0.25, 1, 0.5, 1),
    opacity 280ms cubic-bezier(0.25, 1, 0.5, 1);
}

.anatomy-popover {
  position: absolute;
  width: 260px;
  z-index: 8;
  --shift-x: 0px;
  --shift-y: 0px;
  border-radius: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.18);
  background: linear-gradient(170deg, rgba(17, 18, 20, 0.94) 0%, rgba(8, 9, 11, 0.96) 100%);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0.9rem;
  opacity: 0;
  transform: translate(var(--shift-x), calc(8px + var(--shift-y)));
  pointer-events: none;
  transition:
    opacity 320ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 420ms cubic-bezier(0.25, 1, 0.5, 1);
}

.anatomy-node.is-active .anatomy-link {
  transform: rotate(var(--line-rot, 0deg)) scaleX(1);
  opacity: 1;
}

.anatomy-node.is-active .anatomy-popover {
  opacity: 1;
  transform: translate(var(--shift-x), var(--shift-y));
}

.anatomy-popover-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(242, 243, 244, 0.96);
}

.anatomy-popover-text {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(232, 237, 242, 0.78);
}

.node-1 {
  top: 18%;
  left: 52%;
}

.node-1 .anatomy-link {
  --line-rot: -18deg;
  width: 92px;
}

.node-1 .anatomy-popover {
  left: 83px;
  top: -117px;
}

.node-2 {
  top: 44%;
  left: 63%;
}

.node-2 .anatomy-link {
  --line-rot: 8deg;
  width: 78px;
}

.node-2 .anatomy-popover {
  left: 78px;
  top: -93px;
}

.node-3 {
  top: 50%;
  left: 34%;
}

.node-3 .anatomy-link {
  --line-rot: 176deg;
  width: 96px;
}

.node-3 .anatomy-popover {
  right: 98px;
  top: -61px;
}

.node-4 {
  top: 78%;
  left: 51%;
}

.node-4 .anatomy-link {
  --line-rot: -34deg;
  width: 98px;
}

.node-4 .anatomy-popover {
  left: 88px;
  top: -122px;
}

@media (min-width: 768px) {
  .anatomy-implant-image {
    transform: translateY(10px) scale(1.2);
    transform-origin: center;
  }

  .node-1 {
    top: 10.2%;
    left: 52.4%;
  }

  .node-2 {
    top: 41.2%;
    left: 65.6%;
  }

  .node-3 {
    top: 48.2%;
    left: 30.8%;
  }

  .node-4 {
    top: 82.2%;
    left: 51.2%;
  }
}

@media (min-width: 1280px) {
  .anatomy-stage {
    min-height: 0;
  }

  .anatomy-implant-image {
    transform: translateY(-8px) scale(1.1);
  }
}

@keyframes anatomyPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

@keyframes hotspotGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0.18rem rgba(232, 237, 242, 0.16),
      0 0 0 0 rgba(232, 237, 242, 0.22);
  }
  55% {
    box-shadow:
      0 0 0 0.24rem rgba(232, 237, 242, 0.2),
      0 0 0 0.75rem rgba(232, 237, 242, 0);
  }
}

@media (max-width: 767px) {
  #implant-anatomy::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #product-catalog::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #products::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #implant-anatomy::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  #product-catalog::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  #products::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  .anatomy-stage {
    min-height: 420px;
  }
  .anatomy-hotspot {
    width: 2.65rem;
    height: 2.65rem;
  }
  .anatomy-link,
  .anatomy-popover {
    display: none;
  }
}

.anatomy-mobile-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  isolation: isolate;
}

.anatomy-mobile-popup-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2, 3, 5, 0.72);
}

.anatomy-mobile-popup-sheet {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(192, 192, 192, 0.2);
  background: linear-gradient(170deg, rgba(17, 18, 20, 0.97) 0%, rgba(8, 9, 11, 0.98) 100%);
  padding: 0.95rem 0.95rem 1rem;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
  isolation: isolate;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(232, 237, 242, 0.78);
}

.service-detail-link::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid rgba(232, 237, 242, 0.78);
  border-right: 1px solid rgba(232, 237, 242, 0.78);
  transform: rotate(45deg);
  transition: transform var(--dur-luxury) var(--ease-luxury);
}

.service-detail-link:hover::after {
  transform: rotate(45deg) translateX(2px);
}

.tech-slider-slide {
  animation: techSliderFade 520ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.tech-slider-slide > div {
  align-items: stretch;
}

.tech-slider-left,
.tech-slider-right {
  min-height: 0;
}

.tech-slider-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tech-slider-right {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0.85rem;
}

.tech-slider-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.9) contrast(1.02) saturate(0.82);
}

.tech-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  background: linear-gradient(150deg, rgba(17, 18, 20, 0.9) 0%, rgba(8, 9, 11, 0.95) 100%);
  color: rgba(232, 237, 242, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    border-color var(--dur-luxury-fast) var(--ease-luxury),
    box-shadow var(--dur-luxury-fast) var(--ease-luxury),
    color var(--dur-luxury-fast) var(--ease-luxury);
}

.tech-slider-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  border-color: rgba(232, 237, 242, 0.58);
  color: rgba(242, 243, 244, 1);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(192, 192, 192, 0.1);
}

.tech-slider-arrow-prev {
  left: -0.95rem;
}

.tech-slider-arrow-next {
  right: -0.95rem;
}

.tech-slider-counter {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: rgba(232, 237, 242, 0.66);
}

@keyframes techSliderFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .tech-slider-left,
  .tech-slider-right {
    min-height: 0;
  }

  .tech-slider-right {
    min-height: 0;
    padding: 0.95rem;
  }

  .tech-slider-arrow {
    top: auto;
    bottom: -1.2rem;
    transform: none;
    width: 2.7rem;
    height: 2.7rem;
  }

  .tech-slider-arrow-prev {
    left: calc(50% - 3.1rem);
  }

  .tech-slider-arrow-next {
    right: calc(50% - 3.1rem);
  }

  .tech-slider-counter {
    margin-top: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .regional-partners-image {
    transform: translate3d(5px, 0, 0) scale(1.1);
  }
}

.logo-glow {
  position: absolute;
  inset: -8px -18px;
  background:
    radial-gradient(46% 46% at 34% 34%, rgba(232, 237, 242, 0.34), transparent 72%),
    radial-gradient(40% 40% at 68% 60%, rgba(192, 192, 192, 0.22), transparent 76%);
  filter: blur(10px);
  opacity: 0.62;
  pointer-events: none;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 30;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo-link,
.logo-link * {
  cursor: pointer;
}

.logo-link img {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (hover: hover) and (pointer: fine) {
  .logo-link:hover {
    transform: translate3d(0, -1px, 0) scale(1.008);
  }

  .logo-link:hover img {
    transform: translate3d(0, -1px, 0) scale(1.018);
  }
}

.hero-image-glow {
  position: absolute;
  inset: -18% -12% -16% -14%;
  background:
    radial-gradient(55% 55% at 30% 20%, rgba(232, 237, 242, 0.35), transparent 65%),
    radial-gradient(40% 40% at 80% 70%, rgba(192, 192, 192, 0.25), transparent 70%);
  filter: blur(26px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-bg-korea-smooth.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.86;
  filter: grayscale(0.42) contrast(1.12) brightness(1.06) saturate(1.18);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.6)),
    linear-gradient(100deg, rgba(8, 8, 8, 0.28) 0%, rgba(10, 10, 10, 0.48) 55%, rgba(10, 10, 10, 0.64) 100%);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-image-smoke {
  position: absolute;
  inset: -10% -10% -5% -10%;
  background:
    radial-gradient(45% 45% at 20% 30%, rgba(255, 255, 255, 0.12), transparent 70%),
    radial-gradient(40% 40% at 75% 25%, rgba(232, 237, 242, 0.15), transparent 70%),
    radial-gradient(55% 55% at 65% 70%, rgba(192, 192, 192, 0.12), transparent 75%);
  filter: blur(32px);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-image-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.4;
  pointer-events: none;
}
