html {
  scroll-behavior: smooth;
}

.dental-demo-page.scrolled .dental-header {
  position: fixed;
  width: 100%;
  z-index: 111;
  transition: .3s;
}

body.dental-demo-page {
  margin: 0;
  color: #ffffff;
  background: #09072b;
  font-family: "Google Sans", "Nunito", Arial, sans-serif;
}

.dental-demo-page * {
  box-sizing: border-box;
}

.dental-demo-page a {
  text-decoration: none;
}

.dental-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  transition: opacity .5s ease, visibility .5s ease;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-wrperrr-image {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.loader-wrperrr-image img {
  width: min(210px, 54vw);
  height: auto;
}

.dental-header {
  position: relative;
  z-index: 20;
  height: 91px;
  background: #ffffff;
  color: #020932;
}

.dental-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.dental-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 184px;
  height: 64px;
  overflow: hidden;
}

.dental-logo img {
  width: 184px;
  height: auto;
  display: block;
}

.dental-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1 1 auto;
}

.dental-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #020932;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease;
}

.dental-nav a.active,
.dental-nav a:hover {
  color: #5d5bf0;
}

.dental-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-help {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #020932;
  flex: 0 0 auto;
}

.dental-help__icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-help__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-help small,
.dental-help strong {
  display: block;
}

.dental-help small {
  margin-bottom: 4px;
  color: #575a78;
  font-size: 16px;
  line-height: 1;
}

.dental-help strong {
  color: #020932;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .1px;
}

.dental-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #5d5bf0;
  padding: 11px;
}

.dental-menu span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
}

.dental-hero {
  position: relative;
  min-height: calc(100vh - 91px);
  overflow: hidden;
  padding: 90px 0 108px;
  background:
    linear-gradient(90deg, rgba(45, 45, 103, .94) 0%, rgba(22, 22, 67, .98) 42%, #0b092f 100%),
    #0b092f;
}

.dental-hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .78;
  pointer-events: none;
}

.dental-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .9fr);
  align-items: center;
  gap: 110px;
}

.dental-hero__content {
  max-width: 650px;
}

.dental-hero h1 {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.dental-hero h1::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 225px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5d5bf0;
}

.hero-pill {
  display: inline-flex;
  width: 128px;
  height: 44px;
  margin: 0 4px;
  vertical-align: middle;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.hero-pill img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-pill--tooth img {
  object-position: 50% 55%;
}

.hero-pill--smile {
  width: 130px;
}

.hero-pill--smile img {
  object-position: 50% 30%;
}

.dental-hero__content>p {
  max-width: 630px;
  margin: 31px 0 42px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.64;
}

.dental-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 28px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.dental-stats strong,
.dental-stats span {
  display: block;
}

.dental-stats strong {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.dental-stats span {
  margin-top: 20px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}

.dental-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.btn-dental {
  min-width: 159px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn-dental:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-dental svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-dental--primary {
  background: #5d5bf0;
  border: 1px solid #5d5bf0;
}

.btn-dental--outline {
  min-width: 160px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .86);
}

.dental-hero__visual {
  position: relative;
  min-height: 606px;
}

.dental-hero__image {
  width: 540px;
  max-width: 100%;
  height: 606px;
  margin-left: auto;
  border-radius: 38px;
  overflow: hidden;
  background: #18204e;
}

.dental-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.dental-review-card {
  position: absolute;
  left: -56px;
  bottom: 177px;
  width: 276px;
  min-height: 143px;
  padding: 20px 20px 18px;
  border-radius: 13px;
  background: #ffffff;
  color: #050a37;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .13);
  animation-name: float-bob-x;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
}

.dental-review-card .stars {
  margin-bottom: 8px;
  color: #5d5bf0;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.dental-review-card strong {
  display: block;
  color: #050a37;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-review-card p {
  margin: 11px 0 0;
  color: #55577b;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.36;
}

.dental-quick-contact {
  position: relative;
  z-index: 5;
  background: #ffffff;
  padding: 0 0 32px;
}

.dental-quick-card {
  min-height: 172px;
  margin: 0 auto;
  transform: translateY(-50px);
  margin-bottom: -50px;
  padding: 50px 50px;
  border-radius: 38px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(330px, 1fr) 310px;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  box-shadow: 0 19px 42px rgba(23, 27, 82, .08);
}

.dental-quick-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dental-quick-item+.dental-quick-item {
  padding-left: 30px;
  border-left: 1px solid #e7e9f5;
}

.dental-quick-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-quick-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-quick-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 7px;
  font-weight: 800;
  font-family: "Google Sans", Arial, sans-serif;
}

.dental-quick-copy strong,
.dental-quick-copy small {
  display: block;
}

.dental-quick-copy strong {
  color: #020932;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.dental-quick-copy small {
  margin-top: 14px;
  color: #4f527a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.dental-quick-button {
  justify-self: end;
  width: 258px;
  height: 57px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #5d5bf0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-quick-button:hover {
  color: #ffffff;
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-quick-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-about {
  position: relative;
  overflow: hidden;
  padding: 94px 0 90px;
  background: #ffffff;
  color: #060a35;
}

.dental-about__grid {
  display: grid;
  grid-template-columns: minmax(480px, .92fr) minmax(500px, 1fr);
  align-items: center;
  gap: 62px;
}

.dental-about__visual {
  position: relative;
  min-height: 655px;
}

.dental-about__visual::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 238px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5d5bf0;
}

.dental-about__image {
  width: 590px;
  max-width: 100%;
  height: 655px;
  border-radius: 36px;
  overflow: hidden;
  background: #edf5f8;
}

.dental-about__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 50%;
}

.dental-about__experience {
  position: absolute;
  border: 10px solid #fff;
  right: -30px;
  bottom: -30px;
  width: 192px;
  height: 213px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: #17215c;
}

.dental-about__experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 7, 47, .28), rgba(9, 7, 47, .78));
}

.dental-about__experience img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 42%;
}

.dental-about__experience div {
  position: relative;
  z-index: 2;
}

.dental-about__experience strong {
  display: block;
  color: #ffffff;
  font-size: 62px;
  font-weight: 800;
  line-height: .9;
}

.dental-about__experience span {
  display: block;
  margin-top: 13px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #5d5bf0;
}

.section-label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-label span {
  color: #5d5bf0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 5px;
}

.dental-about__content h2 {
  max-width: 680px;
  margin: 0;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.dental-about__content>p {
  max-width: 650px;
  margin: 31px 0 49px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-about__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  padding: 26px 0 27px;
  border-top: 1px solid #e7e9f5;
  border-bottom: 1px solid #e7e9f5;
}

.dental-about__metrics div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.dental-about__metrics strong {
  color: #5d5bf0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.dental-about__metrics span {
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.dental-about__footer {
  display: flex;
  align-items: center;
  gap: 49px;
  margin-top: 40px;
}

.dental-about__button {
  width: 182px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #5d5bf0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-about__button:hover {
  color: #ffffff;
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-about__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-founder {
  display: inline-flex;
  align-items: center;
  gap: 19px;
}

.dental-founder img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: 56% 24%;
}

.dental-founder strong,
.dental-founder small {
  display: block;
}

.dental-founder strong {
  color: #060a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-founder small {
  margin-top: 6px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.dental-services {
  position: relative;
  overflow: hidden;
  padding: 98px 0 100px;
  background: linear-gradient(180deg, #f6f7ff 0%, #f6f7ff 64%, #ffffff 64%, #ffffff 100%);
  color: #060a35;
}


.dental-services__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 82px;
}

.dental-services__top h2 {
  max-width: 830px;
  margin: 0;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.dental-services__button {
  width: 179px;
  height: 57px;
  margin-top: 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 0 auto;
  background: #5d5bf0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-services__button:hover {
  color: #ffffff;
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-services__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.dental-service-card {
  min-height: 477px;
  padding: 39px 39px 40px;
  border: 1px solid #ebedfb;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(22, 28, 83, .06);
}

.dental-service-card__head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding-bottom: 21px;
  border-bottom: 1px solid #e7e9f5;
}

.dental-service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-service-card h3 {
  margin: 0;
  color: #060a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.dental-service-card__head a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5d5bf0;
}

.dental-service-card__head a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-service-card p {
  margin: 24px 0 31px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-service-card>img {
  width: 100%;
  height: 218px;
  border-radius: 34px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.dental-expertise {
  position: relative;
  overflow: hidden;
  padding: 99px 0 100px;
  background: #ffffff;
  color: #060a35;
}

.dental-expertise__grid {
  display: grid;
  grid-template-columns: minmax(500px, .98fr) minmax(560px, 1fr);
  align-items: center;
  gap: 31px;
}

.dental-expertise__content h2 {
  max-width: 630px;
  margin: 0;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.dental-expertise__content>p {
  max-width: 630px;
  margin: 30px 0 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e7e9f5;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-expertise__list {
  display: grid;
  gap: 29px;
}

.dental-expertise__item {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 18px;
}

.dental-check {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-expertise__item h3 {
  margin: 0;
  color: #060a35;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.22;
}

.dental-expertise__item p {
  max-width: 620px;
  margin: 17px 0 0;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-expertise__visual {
  position: relative;
  min-height: 552px;
}

.dental-pattern {
  position: absolute;
  top: 56px;
  right: 58px;
  width: 517px;
  height: 434px;
  border-radius: 0 42px 0 0;
  background-color: #0d0a3b;
  background-image:
    radial-gradient(ellipse at 86% 12%, transparent 0 38px, rgba(255, 255, 255, .14) 39px 40px, transparent 41px),
    radial-gradient(ellipse at 85% 12%, transparent 0 76px, rgba(255, 255, 255, .13) 77px 78px, transparent 79px),
    radial-gradient(ellipse at 86% 12%, transparent 0 115px, rgba(255, 255, 255, .12) 116px 117px, transparent 118px),
    radial-gradient(ellipse at 86% 12%, transparent 0 154px, rgba(255, 255, 255, .11) 155px 156px, transparent 157px),
    radial-gradient(ellipse at 86% 12%, transparent 0 193px, rgba(255, 255, 255, .10) 194px 195px, transparent 196px),
    radial-gradient(ellipse at 10% 90%, transparent 0 44px, rgba(255, 255, 255, .08) 45px 46px, transparent 47px),
    radial-gradient(ellipse at 10% 90%, transparent 0 91px, rgba(255, 255, 255, .08) 92px 93px, transparent 94px);
}

.dental-expertise__photo {
  position: absolute;
  overflow: hidden;
  background: #eef2f7;
}

.dental-expertise__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dental-expertise__photo--top {
  top: 0;
  left: 14px;
  width: 298px;
  height: 383px;
  border-radius: 36px;
  z-index: 2;
}

.dental-expertise__photo--top img {
  object-position: 50% 16%;
}

.dental-expertise__photo--side {
  right: 0;
  bottom: 0;
  width: 299px;
  height: 383px;
  border-radius: 36px;
  z-index: 3;
}

.dental-expertise__photo--side img {
  object-position: 50% 50%;
}

.dental-expertise__stat {
  position: absolute;
  left: 20px;
  bottom: -10px;
  z-index: 4;
  width: 299px;
  height: 110px;
  border: 1px solid #e7e9f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 74, .07);
  animation-name: float-bob-x;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.dental-expertise__stat>span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-expertise__stat svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-expertise__stat strong,
.dental-expertise__stat small {
  display: block;
}

.dental-expertise__stat strong {
  color: #060a35;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.dental-expertise__stat small {
  margin-top: 10px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.dental-why {
  position: relative;
  overflow: hidden;
  min-height: 665px;
  padding: 111px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    #0b092f;
  background-size: 70px 69px, 70px 69px, auto;
  color: #ffffff;
}

.dental-why__grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(360px, .8fr) minmax(380px, .92fr);
  align-items: center;
  gap: 36px;
}

.section-label--light {
  color: #5d5bf0;
}

.section-label--light span {
  color: #ffffff;
}

.dental-why__content {
  padding-top: 19px;
}

.dental-why__content h2 {
  max-width: 430px;
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.dental-why__content p {
  max-width: 420px;
  margin: 32px 0 48px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-why__button {
  width: 180px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #5d5bf0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-why__button:hover {
  color: #ffffff;
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-why__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-why__doctor {
  position: relative;
  min-height: 554px;
  align-self: end;
}

.dental-why__halo {
  position: absolute;
  left: 50%;
  bottom: 166px;
  width: 361px;
  height: 361px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(118, 121, 177, .36);
}

.dental-why__doctor img {
  position: absolute;
  left: 50%;
  bottom: -20px;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: 575px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: 66% 50%;
  /* clip-path: inset(0 24% 0 43%); */
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .18));
}

.dental-why__features {
  display: grid;
  padding-top: 29px;
}

.dental-why-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.dental-why-card:last-child {
  border-bottom: 0;
}

.dental-why-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
}

.dental-why-card__icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-why-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-why-card p {
  max-width: 360px;
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.dental-journey {
  position: relative;
  overflow: hidden;
  padding: 103px 0 98px;
  background: #ffffff;
  color: #060a35;
}

.dental-journey__grid {
  display: grid;
  grid-template-columns: minmax(520px, .96fr) minmax(520px, 1fr);
  align-items: center;
  gap: 61px;
}

.dental-journey__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 290px;
  gap: 16px;
}

.dental-journey__image {
  overflow: hidden;
  background: #edf2f7;
}

.dental-journey__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dental-journey__image--one {
  border-radius: 14px 14px 0 0;
}

.dental-journey__image--one img {
  object-position: 52% 38%;
}

.dental-journey__image--two {
  border-radius: 14px 14px 0 0;
}

.dental-journey__image--two img {
  object-position: center;
}

.dental-journey__image--three {
  grid-column: 1 / -1;
  border-radius: 0 14px 14px 14px;
}

.dental-journey__image--three img {
  object-position: 48% 42%;
}

.dental-journey__team {
  position: absolute;
  left: 50%;
  top: 279px;
  z-index: 3;
  min-width: 202px;
  height: 94px;
  padding: 19px 25px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(19, 25, 75, .12);
  transform: translate(-50%, -50%);
}

.dental-journey__team img {
  width: 51px;
  height: 51px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #eef2f7;
}

.dental-journey__team img+img {
  margin-left: -21px;
}

.dental-journey__team img:first-child {
  object-position: 66% 47%;
}

.dental-journey__content {
  padding-top: 22px;
}

.dental-journey__content h2 {
  max-width: 610px;
  margin: 0 0 41px;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.dental-faq {
  max-width: 630px;
}

.dental-faq__item {
  border-bottom: 1px solid #e7e9f5;
}

.dental-faq__item:first-child {
  border-top: 0;
}

.dental-faq__button {
  width: 100%;
  min-height: 78px;
  border: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  color: #060a35;
  text-align: left;
  cursor: pointer;
}

.dental-faq__number,
.dental-faq__question {
  color: #060a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.dental-faq__symbol {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.dental-faq__symbol::before,
.dental-faq__symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 4px;
  border-radius: 3px;
  background: #060a35;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.dental-faq__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dental-faq__item.is-open .dental-faq__symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.dental-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.dental-faq__answer {
  max-width: 540px;
  padding: 0 56px 31px 46px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-testimonial {
  position: relative;
  overflow: hidden !important;
  padding: 109px 0 30px !important;
  background: linear-gradient(180deg, #0d0b36 0 62%, #ffffff 62% 100%) !important;
  color: #ffffff;
}

.dental-testimonial::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 244px;
  width: 760px;
  height: 170px;
  transform: translateX(-43%);
  opacity: .16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .8) 1.4px, transparent 1.6px);
  background-size: 8px 8px;
  mask-image:
    radial-gradient(ellipse at 16% 56%, #000 0 27%, transparent 28%),
    radial-gradient(ellipse at 45% 48%, #000 0 24%, transparent 25%),
    radial-gradient(ellipse at 70% 58%, #000 0 30%, transparent 31%);
  -webkit-mask-image:
    radial-gradient(ellipse at 16% 56%, #000 0 27%, transparent 28%),
    radial-gradient(ellipse at 45% 48%, #000 0 24%, transparent 25%),
    radial-gradient(ellipse at 70% 58%, #000 0 30%, transparent 31%);
}

.dental-testimonial__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 82px;
}

.dental-testimonial__top h2 {
  max-width: 790px;
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.dental-testimonial__button {
  width: 219px;
  height: 58px;
  margin-top: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 0 auto;
  background: #5d5bf0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-testimonial__button:hover {
  color: #ffffff;
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-testimonial__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-testimonial__card {
  position: relative;
  z-index: 1;
  min-height: 536px;
  padding: 96px 101px 95px;
  border-radius: 36px;
  background: #ffffff;
  color: #060a35;
  box-shadow: 0 24px 55px rgba(16, 21, 68, .08);
}

.dental-testimonial__slides {
  display: grid;
}

.dental-testimonial__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity .32s ease, transform .32s ease, visibility .32s ease;
}

.dental-testimonial__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dental-quote {
  height: 60px;
  margin-bottom: 19px;
  color: #5d5bf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  font-weight: 400;
  line-height: .7;
}

.dental-testimonial__slide p {
  max-width: 1080px;
  margin: 0;
  color: #454a73;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.72;
}

.dental-testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 47px;
}

.dental-testimonial__author img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: 54% 20%;
  background: #eef2f7;
}

.dental-testimonial__author strong,
.dental-testimonial__author small {
  display: block;
}

.dental-testimonial__author strong {
  color: #060a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.dental-testimonial__author small {
  margin-top: 9px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.dental-testimonial__nav {
  position: absolute;
  right: 100px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 30px;
}

.dental-testimonial__arrow {
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-testimonial__arrow:hover {
  background: #4f4dea;
  transform: translateY(-2px);
}

.dental-testimonial__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-faqs-section {
  position: relative;
  overflow: hidden;
  padding: 103px 0 104px;
  background: #f6f7ff;
  color: #060a35;
}

.dental-faqs-section__grid {
  display: grid;
  grid-template-columns: minmax(430px, .78fr) minmax(560px, 1fr);
  align-items: center;
  gap: 108px;
}

.dental-faqs-section__content h2 {
  max-width: 570px;
  margin: 0;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.dental-faqs-section__content>p {
  max-width: 560px;
  margin: 31px 0 54px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-faqs-section__emergency {
  max-width: 420px;
  min-height: 181px;
}

.dental-faqs {
  display: grid;
  gap: 25px;
}

.dental-faqs__item {
  border: 0;
  border-radius: 17px;
  overflow: hidden;
  background: #ffffff;
}

.dental-faqs__item.is-open {
  background: #5d5bf0;
  color: #ffffff;
}

.dental-faqs__button {
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) 28px;
  padding: 0 21px;
}

.dental-faqs__button .dental-faq__question {
  font-size: 21px;
}

.dental-faqs__item.is-open .dental-faq__question {
  color: #ffffff;
}

.dental-faqs__item .dental-faq__symbol::before,
.dental-faqs__item .dental-faq__symbol::after {
  background: #060a35;
}

.dental-faqs__item.is-open .dental-faq__symbol::before,
.dental-faqs__item.is-open .dental-faq__symbol::after {
  background: #ffffff;
}

.dental-faqs__answer {
  max-width: 570px;
  padding: 21px 56px 24px 21px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-appointment {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
  background: #f6f7ff;
  color: #060a35;
}

.dental-appointment__top {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(500px, 1fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.dental-appointment__top h2 {
  max-width: 620px;
  margin: 0;
  color: #060a35;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.dental-appointment__top>p {
  max-width: 645px;
  margin: 35px 0 0;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-appointment__grid {
  display: grid;
  grid-template-columns: 413px minmax(620px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.dental-appointment__side {
  display: grid;
  gap: 40px;
}

.dental-hours {
  min-height: 312px;
  padding: 43px 40px 37px;
  border-radius: 35px;
  background: #0d0b36;
  color: #ffffff;
}

.dental-hours h3 {
  margin: 0 0 28px;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-hours__list {
  display: grid;
  gap: 32px;
}

.dental-hours__list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dental-hours__list strong,
.dental-hours__list span {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-emergency {
  min-height: 159px;
  padding: 36px 30px;
  border-radius: 35px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 21px;
  background: #ffffff;
  color: #060a35;
}

.dental-emergency__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5d5bf0;
}

.dental-emergency__icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dental-emergency p {
  margin: 0 0 11px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.dental-emergency h3 {
  margin: 0 0 12px;
  color: #060a35;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.dental-emergency a {
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.dental-appointment__form {
  padding: 51px 50px 50px;
  border-radius: 35px;
  background: #ffffff;
}

.dental-appointment__form>p {
  max-width: 720px;
  margin: 0 0 42px;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.dental-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

.dental-form-grid input,
.dental-form-grid select {
  width: 100%;
  height: 56px;
  border: 1px solid #e7e9f5;
  border-radius: 999px;
  padding: 0 20px;
  outline: none;
  background: #ffffff;
  color: #4f527a;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.dental-form-grid input::placeholder {
  color: #4f527a;
  opacity: 1;
}

.dental-form-grid input:focus,
.dental-form-grid select:focus {
  border-color: #5d5bf0;
  box-shadow: 0 0 0 3px rgba(93, 91, 240, .12);
}

.dental-form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #4f527a 50%),
    linear-gradient(135deg, #4f527a 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 25px,
    calc(100% - 18px) 25px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.dental-reason {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.dental-reason legend {
  margin: 0 0 19px;
  padding: 0;
  color: #060a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.dental-reason label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 62px 0 0;
  color: #4f527a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.dental-reason input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #5d5bf0;
}

.dental-reason input:checked+span {
  color: #5d5bf0;
}

.dental-appointment__form button {
  width: 208px;
  height: 58px;
  margin-top: 45px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5d5bf0;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.dental-appointment__form button:hover {
  background: #4f4dea;
  transform: translateY(-2px);
}

footer#footer {
  padding: 15px 0;
  text-align: center;
  background: #111827;
  color: #ffffff;
}

#footer .footer-copyright p {
  margin: 0;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .dental-container {
    width: min(100% - 32px, 960px);
  }

  .dental-header__inner {
    gap: 20px;
  }

  .dental-nav {
    gap: 20px;
  }

  .dental-help strong {
    font-size: 17px;
  }

  .dental-hero {
    padding: 78px 0 88px;
  }

  .dental-hero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .dental-hero__content {
    max-width: 760px;
  }

  .dental-hero__image {
    margin: 0;
  }

  .dental-review-card {
    left: 28px;
  }

  .dental-quick-card {
    grid-template-columns: 1fr 1fr;
    padding: 42px;
  }

  .dental-quick-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .dental-about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .dental-about__visual {
    width: min(590px, 100%);
  }

  .dental-services__top {
    align-items: flex-start;
    margin-bottom: 58px;
  }

  .dental-services__top h2 {
    font-size: 42px;
  }

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

  .dental-expertise__grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .dental-expertise__content h2,
  .dental-expertise__content>p {
    max-width: 760px;
  }

  .dental-expertise__visual {
    width: min(628px, 100%);
  }

  .dental-why {
    padding-top: 84px;
  }

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

  .dental-why__doctor {
    order: 3;
    grid-column: 1 / -1;
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .dental-journey__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .dental-journey__visual,
  .dental-faq {
    max-width: 630px;
  }

  .dental-testimonial__top h2 {
    font-size: 42px;
  }

  .dental-testimonial__card {
    padding: 76px 70px 86px;
  }

  .dental-testimonial__nav {
    right: 70px;
    bottom: 86px;
  }

  .dental-faqs-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dental-faqs-section__content h2 {
    font-size: 42px;
  }

  .dental-faqs-section__emergency {
    max-width: 520px;
  }

  .dental-appointment__top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 56px;
  }

  .dental-appointment__top h2 {
    font-size: 42px;
  }

  .dental-appointment__top>p {
    margin-top: 0;
  }

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

  .dental-appointment__side {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

@media (max-width: 991px) {
  .dental-header {
    height: 78px;
  }

  .dental-logo {
    width: 160px;
  }

  .dental-logo img {
    width: 160px;
  }

  .dental-menu {
    display: block;
  }

  .dental-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 24px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(2, 9, 50, .12);
  }

  .open-menuu .dental-nav {
    display: flex;
  }

  .dental-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .dental-help {
    margin-left: auto;
  }

  .dental-help small,
  .dental-help strong {
    display: none;
  }

  .dental-hero {
    min-height: calc(100vh - 78px);
  }

  .dental-hero h1 {
    font-size: 46px;
  }

  .dental-hero h1::after {
    display: none;
  }

  .dental-quick-card {
    grid-template-columns: 1fr;
    gap: 24px;
    transform: translateY(-64px);
    margin-bottom: -64px;
  }

  .dental-quick-item+.dental-quick-item {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #e7e9f5;
  }

  .dental-quick-button {
    justify-self: stretch;
    width: 100%;
  }

  .dental-about {
    padding-top: 76px;
  }

  .dental-about__content h2 {
    font-size: 42px;
  }

  .dental-about__metrics {
    gap: 28px;
  }

  .dental-about__metrics div {
    gap: 16px;
  }

  .dental-about__metrics strong {
    font-size: 40px;
  }

  .dental-services {
    padding: 78px 0 80px;
  }

  .dental-services__top {
    flex-direction: column;
    gap: 22px;
  }

  .dental-services__top h2 {
    font-size: 40px;
  }

  .dental-services__button {
    margin-top: 0;
  }

  .dental-expertise {
    padding: 78px 0 86px;
  }

  .dental-expertise__content h2 {
    font-size: 40px;
  }

  .dental-why__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dental-why__content h2 {
    font-size: 40px;
  }

  .dental-why__doctor {
    order: 2;
  }

  .dental-why__features {
    order: 3;
    padding-top: 0;
  }

  .dental-journey {
    padding: 78px 0 82px;
  }

  .dental-journey__content h2 {
    font-size: 40px;
  }

  .dental-testimonial {
    padding-top: 82px;
  }

  .dental-testimonial__top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 54px;
  }

  .dental-testimonial__top h2 {
    font-size: 40px;
  }

  .dental-testimonial__button {
    margin-top: 0;
  }

  .dental-testimonial__card {
    min-height: 0;
    padding: 58px 48px 128px;
  }

  .dental-testimonial__slide p {
    font-size: 19px;
  }

  .dental-testimonial__nav {
    left: 48px;
    right: auto;
    bottom: 48px;
  }

  .dental-faqs-section {
    padding: 78px 0 82px;
  }

  .dental-faqs-section__content h2 {
    font-size: 40px;
  }

  .dental-appointment {
    padding: 70px 0 76px;
  }

  .dental-appointment__top h2 {
    font-size: 40px;
  }

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

@media (max-width: 767px) {
  .dental-container {
    width: min(100% - 28px, 540px);
  }

  .dental-hero {
    padding: 56px 0 72px;
  }

  .dental-hero::before {
    width: 100%;
    inset: 0;
  }

  .dental-hero h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .hero-pill {
    width: 92px;
    height: 34px;
  }

  .hero-pill--smile {
    width: 96px;
  }

  .dental-hero__content>p {
    margin: 24px 0 32px;
    font-size: 16px;
  }

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

  .dental-stats strong {
    font-size: 36px;
  }

  .dental-stats span {
    margin-top: 9px;
  }

  .dental-actions {
    flex-wrap: wrap;
    gap: 16px;
  }

  .btn-dental {
    min-width: 148px;
  }

  .dental-hero__visual {
    min-height: 430px;
  }

  .dental-hero__image {
    height: 430px;
    border-radius: 28px;
  }

  .dental-review-card {
    left: 18px;
    right: 18px;
    bottom: 26px;
    width: auto;
  }

  .dental-quick-contact {
    padding-bottom: 24px;
  }

  .dental-quick-card {
    border-radius: 26px;
    padding: 28px;
  }

  .dental-quick-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .dental-quick-icon svg {
    width: 33px;
    height: 33px;
  }

  .dental-quick-copy strong {
    font-size: 20px;
  }

  .dental-quick-copy small {
    margin-top: 9px;
    font-size: 16px;
  }

  .dental-about {
    padding: 58px 0 64px;
  }

  .dental-about__visual {
    min-height: 505px;
  }

  .dental-about__visual::after {
    right: 36%;
  }

  .dental-about__image {
    height: 505px;
    border-radius: 28px;
  }

  .dental-about__experience {
    width: 158px;
    height: 176px;
    border-radius: 24px;
  }

  .dental-about__experience strong {
    font-size: 48px;
  }

  .dental-about__experience span {
    font-size: 15px;
  }

  .section-label span {
    letter-spacing: 4px;
  }

  .dental-about__content h2 {
    font-size: 35px;
  }

  .dental-about__content>p {
    margin: 23px 0 32px;
    font-size: 16px;
  }

  .dental-about__metrics {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dental-about__footer {
    flex-wrap: wrap;
    gap: 24px;
  }

  .dental-services {
    padding: 60px 0 68px;
    background: #f6f7ff;
  }

  .dental-services::before {
    display: none;
  }

  .dental-services__top {
    margin-bottom: 36px;
  }

  .dental-services__top h2 {
    font-size: 34px;
  }

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

  .dental-service-card {
    min-height: 0;
    padding: 30px;
    border-radius: 26px;
  }

  .dental-service-card>img {
    height: 210px;
    border-radius: 26px;
  }

  .dental-expertise {
    padding: 60px 0 70px;
  }

  .dental-expertise__content h2 {
    font-size: 34px;
  }

  .dental-expertise__content>p {
    margin: 23px 0 32px;
    padding-bottom: 30px;
    font-size: 16px;
  }

  .dental-expertise__item {
    gap: 14px;
  }

  .dental-expertise__item h3 {
    font-size: 20px;
  }

  .dental-expertise__item p {
    font-size: 16px;
  }

  .dental-expertise__visual {
    min-height: 630px;
  }

  .dental-pattern {
    top: 72px;
    right: 0;
    width: 82%;
    height: 400px;
  }

  .dental-expertise__photo--top {
    left: 0;
    width: 52%;
    height: 360px;
  }

  .dental-expertise__photo--side {
    width: 52%;
    height: 360px;
  }

  .dental-expertise__stat {
    left: 0;
    bottom: 14px;
  }

  .dental-why {
    padding: 62px 0 0;
  }

  .dental-why__content h2 {
    font-size: 34px;
  }

  .dental-why__content p {
    margin: 22px 0 32px;
    font-size: 16px;
  }

  .dental-why__doctor {
    min-height: 500px;
  }

  .dental-why__halo {
    width: 300px;
    height: 300px;
  }

  .dental-why__doctor img {
    height: 520px;
    width: 820px;
  }

  .dental-why-card {
    padding: 24px 0;
  }

  .dental-why-card h3 {
    font-size: 20px;
  }

  .dental-why-card p {
    font-size: 16px;
  }

  .dental-journey {
    padding: 62px 0 68px;
  }

  .dental-journey__visual {
    grid-template-rows: 220px 238px;
    gap: 12px;
  }

  .dental-journey__team {
    top: 220px;
    min-width: 176px;
    height: 78px;
    padding: 14px 20px;
  }

  .dental-journey__team img {
    width: 43px;
    height: 43px;
  }

  .dental-journey__content {
    padding-top: 0;
  }

  .dental-journey__content h2 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .dental-faq__button {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 14px;
    min-height: 72px;
  }

  .dental-faq__number,
  .dental-faq__question {
    font-size: 19px;
  }

  .dental-faq__answer {
    padding: 0 42px 26px 38px;
    font-size: 16px;
  }

  .dental-testimonial {
    padding: 64px 0 24px;
  }

  .dental-testimonial__top h2 {
    font-size: 34px;
  }

  .dental-testimonial__button {
    width: 100%;
  }

  .dental-testimonial__card {
    border-radius: 26px;
    padding: 42px 30px 116px;
  }

  .dental-quote {
    height: 46px;
    font-size: 72px;
  }

  .dental-testimonial__slide p {
    font-size: 17px;
    line-height: 1.68;
  }

  .dental-testimonial__author {
    margin-top: 32px;
  }

  .dental-testimonial__nav {
    left: 30px;
    bottom: 36px;
    gap: 18px;
  }

  .dental-faqs-section {
    padding: 62px 0 68px;
  }

  .dental-faqs-section__grid {
    gap: 36px;
  }

  .dental-faqs-section__content h2 {
    font-size: 34px;
  }

  .dental-faqs-section__content>p {
    margin: 22px 0 34px;
    font-size: 16px;
  }

  .dental-faqs {
    gap: 16px;
  }

  .dental-faqs__button {
    min-height: 62px;
    padding: 0 18px;
  }

  .dental-faqs__button .dental-faq__question {
    font-size: 18px;
  }

  .dental-faqs__answer {
    padding: 18px 42px 22px 18px;
    font-size: 16px;
  }

  .dental-appointment {
    padding: 58px 0 64px;
  }

  .dental-appointment__top {
    margin-bottom: 36px;
  }

  .dental-appointment__top h2 {
    font-size: 34px;
  }

  .dental-appointment__top>p,
  .dental-appointment__form>p {
    font-size: 16px;
  }

  .dental-hours,
  .dental-emergency,
  .dental-appointment__form {
    border-radius: 26px;
  }

  .dental-hours {
    padding: 34px 30px;
  }

  .dental-emergency {
    padding: 28px;
  }

  .dental-appointment__form {
    padding: 34px 30px;
  }

  .dental-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dental-reason label {
    display: flex;
    margin: 0 0 17px;
  }

  .dental-appointment__form button {
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .dental-header__inner {
    gap: 10px;
  }

  .dental-logo {
    width: 132px;
  }

  .dental-logo img {
    width: 132px;
  }

  .dental-help__icon {
    width: 38px;
    height: 38px;
  }

  .dental-hero h1 {
    font-size: 32px;
  }

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

  .btn-dental,
  .btn-dental--outline {
    width: 100%;
  }

  .dental-about__visual {
    min-height: 430px;
  }

  .dental-about__image {
    height: 430px;
  }

  .dental-about__experience {
    right: 14px;
    width: 138px;
    height: 154px;
  }

  .dental-about__content h2 {
    font-size: 30px;
  }

  .dental-about__metrics div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .dental-about__button {
    width: 100%;
  }

  .dental-services__top h2 {
    font-size: 30px;
  }

  .dental-services__button {
    width: 100%;
  }

  .dental-service-card__head {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .dental-service-card__icon {
    width: 46px;
    height: 46px;
  }

  .dental-service-card h3 {
    font-size: 19px;
  }

  .dental-expertise__content h2 {
    font-size: 30px;
  }

  .dental-expertise__visual {
    min-height: 730px;
  }

  .dental-pattern {
    top: 170px;
    width: 100%;
    height: 360px;
  }

  .dental-expertise__photo--top,
  .dental-expertise__photo--side {
    position: relative;
    width: 100%;
    height: 310px;
    inset: auto;
    margin-bottom: 18px;
    border-radius: 28px;
  }

  .dental-expertise__stat {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .dental-why__content h2 {
    font-size: 30px;
  }

  .dental-why__button {
    width: 100%;
  }

  .dental-why__doctor {
    min-height: 430px;
  }

  .dental-why__halo {
    width: 250px;
    height: 250px;
    bottom: 132px;
  }

  .dental-why__doctor img {
    height: 455px;
    width: 720px;
  }

  .dental-why-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .dental-why-card__icon {
    width: 46px;
    height: 46px;
  }

  .dental-journey__visual {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .dental-journey__image--one,
  .dental-journey__image--two,
  .dental-journey__image--three {
    grid-column: auto;
    border-radius: 14px;
  }

  .dental-journey__team {
    top: 50%;
  }

  .dental-journey__content h2 {
    font-size: 30px;
  }

  .dental-faq__button {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    gap: 10px;
  }

  .dental-faq__number,
  .dental-faq__question {
    font-size: 17px;
  }

  .dental-faq__answer {
    padding-left: 32px;
    padding-right: 0;
  }

  .dental-testimonial__top h2 {
    font-size: 30px;
  }

  .dental-testimonial__card {
    padding: 36px 22px 106px;
  }

  .dental-testimonial__author {
    align-items: flex-start;
  }

  .dental-faqs-section__content h2 {
    font-size: 30px;
  }

  .dental-faqs-section__emergency {
    max-width: none;
  }

  .dental-faqs__button {
    grid-template-columns: minmax(0, 1fr) 22px;
  }

  .dental-faqs__button .dental-faq__question {
    font-size: 17px;
  }

  .dental-appointment__top h2 {
    font-size: 30px;
  }

  .dental-hours__list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .dental-appointment__form button {
    width: 100%;
  }
}