:root {
  --dentures-primary: #10315f;
  --dentures-secondary: #f9f5ff;
  --dentures-accent: #ff7d9b;
  --dentures-highlight: #91c7ff;
}

.hero--dentures {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(145, 199, 255, 0.32), transparent 60%),
              radial-gradient(circle at 75% 20%, rgba(255, 125, 155, 0.28), transparent 62%),
              linear-gradient(135deg, #030b1a 0%, #08204a 36%, #123a78 100%);
  color: #ffffff;
  padding-block: clamp(5.2rem, 8vw, 8.2rem);
}

.hero--dentures::before,
.hero--dentures::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
}

.hero--dentures::before {
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 168, 198, 0.7), transparent 70%);
  top: -10rem;
  right: -8rem;
  animation: heroPulse 14s ease-in-out infinite;
}

.hero--dentures::after {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(102, 181, 255, 0.7), transparent 70%);
  bottom: -12rem;
  left: -6rem;
  animation: heroPulse 16s ease-in-out infinite reverse;
}

.hero--dentures .hero-container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin-block: 1.2rem 1.35rem;
  letter-spacing: -0.01em;
}

.hero--dentures .hero-sub {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero--dentures .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  color: #fdfbff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(3, 11, 26, 0.28);
}

.hero--dentures .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.hero-pillrail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.hero-pillrail li {
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero-pillrail li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-pillrail li:hover::after,
.hero-pillrail li:focus-visible::after {
  opacity: 1;
}

.hero--dentures .hero-button {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero--dentures .hero-button.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero--dentures .hero-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(0.5rem, 2vw, 1.5rem);
  max-width: 540px;
  margin-inline: auto;
  isolation: isolate;
}

.hero-media__glow {
  position: absolute;
  inset: auto;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(4, 18, 42, 0.1));
  filter: blur(80px);
  z-index: 0;
  animation: heroGlow 12s ease-in-out infinite;
}

.hero-figure {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, rgba(8, 27, 53, 0.7), rgba(8, 27, 53, 0.35));
  border-radius: 1.6rem;
  padding: clamp(0.8rem, 1.8vw, 1.5rem);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 55px rgba(3, 14, 32, 0.6);
  overflow: visible;
}

.hero-figure__images {
  position: relative;
}

.hero-figure__main {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 25px 45px rgba(4, 16, 35, 0.55);
  animation: heroDrift 16s ease-in-out infinite;
}

.hero-figure__accent {
  position: absolute;
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 36px rgba(4, 16, 35, 0.45);
  object-fit: cover;
  filter: saturate(1.05);
  animation: accentFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-figure__accent--left {
  bottom: -1.2rem;
  left: -1.1rem;
  width: clamp(180px, 45%, 220px);
  animation-delay: 0.4s;
}

.hero-figure__accent--right {
  top: -1.4rem;
  right: -1.3rem;
  width: clamp(180px, 45%, 220px);
  animation-delay: 1s;
}

.hero-figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.hero-figure figcaption::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 125, 155, 0.7), rgba(145, 199, 255, 0.7));
  margin-bottom: 0.75rem;
}

.hero-media__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: #fdfbff;
  font-size: 0.92rem;
  backdrop-filter: blur(16px);
  z-index: 2;
  box-shadow: 0 16px 32px rgba(3, 11, 26, 0.45);
  animation: chipFloat 6.5s ease-in-out infinite;
}

.chip--top {
  top: 12%;
  right: 14%;
}

.chip--bottom {
  bottom: 10%;
  left: 10%;
  animation-delay: 1.5s;
}

.hero-media__chip i {
  font-size: 1.1rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.section {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.section-header {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header p {
  color: #41546e;
}

.lineup {
  background: linear-gradient(180deg, #f9fafe 0%, #fef7fb 100%);
}

.lineup-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lineup-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(16, 49, 95, 0.08);
  border: 1px solid rgba(16, 49, 95, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lineup-card p {
  color: #3a4b63;
  line-height: 1.6;
}

.lineup-card:hover,
.lineup-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(16, 49, 95, 0.16);
  border-color: rgba(16, 49, 95, 0.16);
}

.lineup-card header h3 {
  font-size: 1.3rem;
  color: #0c2c58;
}

.lineup-card .price {
  font-weight: 700;
  color: #ff6f8e;
  margin-top: 0.25rem;
}

.lineup-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: 0 16px 30px rgba(12, 44, 88, 0.15);
}

.lineup-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lineup-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lineup-card:hover .lineup-image::after,
.lineup-card:focus-within .lineup-image::after {
  opacity: 1;
}

.lineup-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: #3a4b63;
}

.lineup-card li i {
  color: #ff6f8e;
  margin-right: 0.5rem;
}

.lineup-card .turnaround {
  font-size: 0.95rem;
  color: #0c2c58;
  background: rgba(145, 199, 255, 0.16);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.timeline {
  background: #ffffff;
}

.timeline-steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0;
  margin: 0;
}

.timeline-steps li {
  background: linear-gradient(160deg, rgba(16, 49, 95, 0.08), rgba(255, 125, 155, 0.08));
  border-radius: 1.1rem;
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(12, 44, 88, 0.08);
}

.timeline-steps h3 {
  font-size: 1.1rem;
  color: #10315f;
}

.timeline-steps p {
  color: #44566f;
  font-size: 0.95rem;
  line-height: 1.55;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff7d9b, #91c7ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.stages {
  background: linear-gradient(180deg, #fdfbff 0%, #eef5ff 100%);
}

.stage-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 0;
  margin: 0;
}

.stage-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem 1.8rem;
  border: 1px solid rgba(16, 49, 95, 0.08);
  box-shadow: 0 16px 30px rgba(16, 49, 95, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.stage-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff7d9b, #91c7ff);
  opacity: 0.7;
}

.stage-badge {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff90ab, #8ec9ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.stage-card h3 {
  font-size: 1.1rem;
  color: #10315f;
}

.stage-card p {
  font-size: 0.95rem;
  color: #40526b;
  line-height: 1.55;
}

.stage-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8aa4;
}

.workflow {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.workflow-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.workflow-grid article {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(16, 49, 95, 0.12);
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(12, 44, 88, 0.07);
}

.workflow-grid h3 {
  color: #0c2c58;
  margin-bottom: 0.75rem;
}

.workflow-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #3d4f68;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.pricing {
  background: #0f1f38;
  color: #ffffff;
}

.pricing .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-table {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.6fr) 2fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.25rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-row[data-animate] {
  animation-duration: 0.8s;
}

.pricing-row:hover,
.pricing-row:focus-within {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-head {
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.pricing-row div {
  font-size: 0.98rem;
}

.price-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.faq {
  background: linear-gradient(180deg, #fef9ff 0%, #f3f8ff 100%);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(16, 49, 95, 0.1);
  box-shadow: 0 12px 30px rgba(15, 31, 56, 0.08);
}

.faq-grid h3 {
  color: #0c2c58;
  margin-bottom: 0.75rem;
}

.faq-grid p {
  color: #41546e;
  font-size: 0.96rem;
  line-height: 1.6;
}

.site-footer {
  background: #04122a;
  color: #ffffff;
  padding-block: 2.5rem;
}

.footer-inner {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: 1.5rem;
}

.footer-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #25d366, #0ba34e);
  color: #ffffff;
  font-weight: 700;
}

.footer-cta i {
  font-size: 1.3rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.75;
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-6px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes accentFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -14px);
  }
}

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

  .hero-media__chip {
    position: static;
    margin-inline: auto;
    margin-top: 1rem;
  }

  .hero-pillrail {
    justify-content: center;
  }

  .hero-figure__accent--left {
    left: 8%;
    bottom: -0.8rem;
  }

  .hero-figure__accent--right {
    right: 8%;
    top: -0.8rem;
  }
}

@media (max-width: 768px) {
  .hero-figure {
    margin-top: 1.5rem;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .stage-rail {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-figure__accent--left,
  .hero-figure__accent--right {
    width: 160px;
  }
}
