*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #17010D;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.page {
  padding-top: 4rem;
}

.eyebrow {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #CA006D;
}

.section-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 28px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 44px;
  }
}

.lead {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
}
@media (min-width: 768px) {
  .lead {
    font-size: 14px;
    line-height: 20px;
  }
}

.section {
  padding-block: 5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding-inline: 25px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 16px;
  border: 1px solid transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  .btn {
    font-size: 14px;
    line-height: 20px;
  }
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: #CA006D;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #DC0679;
}

.btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.btn--ghost-dark:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--outline {
  border-color: #EDEDED;
  color: #17010D;
}
.btn--outline:hover {
  border-color: #CA006D;
  color: #CA006D;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  height: 42px;
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #665E62;
  transition: color 0.2s;
}
.link-arrow svg {
  width: 14px;
  height: 14px;
}
.link-arrow:hover {
  color: #CA006D;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
}
.site-header__inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo img {
  height: 28px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}
.nav__link, .nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #665E62;
  transition: color 0.2s;
}
.nav__link:hover, .nav__toggle:hover {
  color: #17010D;
}
.nav__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.nav__item {
  position: relative;
}
.nav__item.is-open .nav__toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 224px;
  background: #FFFFFF;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding-block: 6px;
  z-index: 50;
  display: none;
}
.nav__item.is-open .nav__dropdown {
  display: block;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: #665E62;
  transition: color 0.2s, background-color 0.2s;
}
.nav__dropdown a svg {
  width: 12px;
  height: 12px;
}
.nav__dropdown a:hover {
  color: #17010D;
  background: #FAFAFA;
}

.header-phone {
  display: none;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  color: #17010D;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
@media (min-width: 1024px) {
  .header-phone {
    display: inline-flex;
  }
}
.header-phone:hover {
  border-color: #CA006D;
  color: #CA006D;
}

.burger {
  display: inline-flex;
  color: #17010D;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger svg {
  width: 20px;
  height: 20px;
}
.burger .burger__close {
  display: none;
}
.burger.is-active .burger__open {
  display: none;
}
.burger.is-active .burger__close {
  display: block;
}

.mobile-menu {
  display: none;
  background: #FFFFFF;
  border-top: 1px solid #EDEDED;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu__link, .mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 10px;
  font-size: 14px;
  color: #665E62;
  text-align: left;
}
.mobile-menu__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.mobile-menu__group.is-open .mobile-menu__toggle svg {
  transform: rotate(180deg);
}
.mobile-menu__sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
  margin-bottom: 4px;
}
.mobile-menu__group.is-open .mobile-menu__sub {
  display: flex;
}
.mobile-menu__sub a {
  padding-block: 8px;
  font-size: 14px;
  color: #665E62;
  transition: color 0.2s;
}
.mobile-menu__sub a:hover {
  color: #CA006D;
}
.mobile-menu__phone {
  margin-top: 8px;
  padding-block: 10px;
  font-size: 14px;
  color: #CA006D;
}

.hero {
  position: relative;
  background: #17010D;
  overflow: hidden;
  min-height: calc(80vh - 150px);
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 64px;
  min-height: calc(80vh - 214px);
}
@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    gap: 48px;
  }
}
.hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .hero__text {
    width: 50%;
    padding-block: 64px;
  }
}
.hero__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 80px;
    line-height: 80px;
  }
}
.hero__title span {
  display: block;
}
.hero__title-accent {
  color: #CA006D;
}
.hero__desc {
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}
.hero__media {
  width: 100%;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .hero__media {
    width: 50%;
    padding-block: 48px;
  }
}
.hero__card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 8px;
}
.hero__badge span {
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.glow {
  position: absolute;
  top: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(120px);
  background: radial-gradient(circle, #D4A7BF 0%, #CA006D 58%, #AB005C 100%);
}
.glow--center {
  left: 50%;
  transform: translate(-50%, -50%);
}
.glow--left {
  left: -250px;
  transform: translateY(-50%);
}
.glow--right {
  right: -250px;
  transform: translateY(-50%);
}

.products {
  background: #FFFFFF;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.section-head .eyebrow {
  margin-bottom: 8px;
}
.section-head__more {
  display: none;
}
@media (min-width: 768px) {
  .section-head__more {
    display: inline-flex;
  }
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  --stroke-0: #665E62;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
  transition: background-color 0.2s, border-color 0.2s;
}
@media (min-width: 640px) {
  .product-card {
    padding: 24px;
  }
}
.product-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #FAFAFA;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.product-card__icon svg {
  width: 48px;
  height: 48px;
}
.product-card__icon svg path {
  stroke: var(--stroke-0);
}
.product-card__label {
  font-size: 14px;
  line-height: 1.375;
  color: #17010D;
}
.product-card:hover {
  --stroke-0: #FFFFFF;
  border-color: #CA006D;
  background: rgba(202, 0, 109, 0.1);
}
.product-card:hover .product-card__icon {
  background: #CA006D;
  border-color: #CA006D;
}

.products__more-mobile {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .products__more-mobile {
    display: none;
  }
}

.about {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #EDEDED;
}
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #17010D;
}
.about__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.about__inner {
  position: relative;
  padding-block: 5rem;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 200px;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-block: 32px;
}
@media (min-width: 1024px) {
  .about__main {
    grid-column: span 3;
    flex-direction: row;
    padding-block: 0;
  }
}
.about__logo {
  height: 128px;
  width: 213px;
  flex-shrink: 0;
}
.about__logo svg {
  width: 100%;
  height: 100%;
}
.about__divider {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  height: 1px;
  width: 330px;
}
@media (min-width: 1024px) {
  .about__divider {
    height: 128px;
    width: 1px;
  }
}
.about__heading {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .about__heading {
    text-align: left;
  }
}
.about__heading h2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .about__heading h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1024px) {
  .about__heading h2 {
    padding-right: 70px;
  }
}
.about__download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 20px;
  background: #CA006D;
  border-radius: 14px;
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .about__download {
    grid-column: span 1;
  }
}
.about__download svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.about__download p {
  font-size: 14px;
  color: #FFFFFF;
}
.about__download:hover {
  background: #AB005C;
}

.offers {
  background: #FAFAFA;
  border-top: 1px solid #EDEDED;
}
.offers .eyebrow {
  margin-bottom: 8px;
}
.offers .section-title {
  margin-bottom: 40px;
}
.offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .offers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .offers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
}
.offer-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFDAE6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card__icon svg {
  width: 20px;
  height: 20px;
}
.offer-card__icon svg path {
  stroke: #CA006D;
}
.offer-card__label {
  font-size: 14px;
  line-height: 1.375;
  color: #17010D;
}

.service-geo {
  background: #FFFFFF;
  border-top: 1px solid #EDEDED;
}
.service-geo__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .service-geo__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-geo__intro .eyebrow {
  margin-bottom: 8px;
}
.service-geo__intro .section-title {
  margin-bottom: 16px;
}
.service-geo__regions-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #CA006D;
  margin-bottom: 16px;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #EDEDED;
  font-size: 14px;
  color: #665E62;
}
.region--accent {
  color: #CA006D;
}

.service-geo__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .service-geo__cards {
    flex-direction: row;
  }
}

.geo-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  min-height: 220px;
}
.geo-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.geo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 1, 13, 0.8), rgba(23, 1, 13, 0.3) 50%, transparent);
}
.geo-card__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.geo-card__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 4px;
}
.geo-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.geo-card__title {
  color: #FFFFFF;
  font-size: 18px;
}
.geo-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #CA006D;
  transition: background-color 0.2s;
}
.geo-card__arrow svg {
  width: 15px;
  height: 15px;
  color: #FFFFFF;
}
.geo-card__arrow--ghost {
  background: rgba(255, 255, 255, 0.15);
}
.geo-card:hover .geo-card__img {
  transform: scale(1.05);
}
.geo-card:hover .geo-card__arrow--ghost {
  background: #CA006D;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding-block: 5rem;
}
.catalog-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}
.catalog-hero__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(202, 0, 109, 0.15), transparent 70%);
}
.catalog-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .catalog-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.catalog-hero__eyebrow {
  margin-bottom: 12px;
}
.catalog-hero__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 50px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .catalog-hero__title {
    font-size: 80px;
    line-height: 80px;
  }
}
.catalog-hero__desc {
  margin-top: 16px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .catalog-hero__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
.catalog-hero__download {
  flex-shrink: 0;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .catalog-hero__download {
    align-self: auto;
  }
}

.catalog-chips {
  background: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
  padding-block: 20px;
}
@media (min-width: 1024px) {
  .catalog-chips {
    position: sticky;
    top: 4rem;
    z-index: 40;
  }
}
.catalog-chips__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  height: 38px;
  padding-inline: 16px;
  border-radius: 10px;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  line-height: 16px;
  color: #665E62;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .chip {
    font-size: 14px;
    line-height: 20px;
  }
}
.chip:hover {
  border-color: #CA006D;
  color: #CA006D;
}
.chip.is-active {
  background: #CA006D;
  border-color: #CA006D;
  color: #FFFFFF;
}

.catalog-list {
  background: #FAFAFA;
  padding-block: 4rem;
}
.catalog-list__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .catalog-item {
    flex-direction: row;
  }
}
.catalog-item__media {
  flex-shrink: 0;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 220px;
}
@media (min-width: 1024px) {
  .catalog-item__media {
    width: 220px;
  }
}
.catalog-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 180px;
}
.catalog-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 20px;
}
@media (min-width: 768px) {
  .catalog-item__body {
    padding: 32px;
  }
}
.catalog-item__eyebrow {
  margin-bottom: 8px;
}
.catalog-item__name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .catalog-item__name {
    font-size: 24px;
    line-height: 36px;
  }
}
.catalog-item__desc {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .catalog-item__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
.catalog-item__specs {
  border-top: 1px solid #EDEDED;
  padding-top: 20px;
}
.catalog-item__specs-title {
  margin-bottom: 16px;
}
.catalog-item__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}
@media (min-width: 1280px) {
  .catalog-item__specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.catalog-item__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-block: 12px;
  border-bottom: 1px solid #EDEDED;
}
.catalog-item__spec:nth-last-child(-n+2) {
  border-bottom: 0;
}
.catalog-item__spec-label {
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .catalog-item__spec-label {
    font-size: 12px;
    line-height: 18px;
  }
}
.catalog-item__spec-value {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .catalog-item__spec-value {
    font-size: 14px;
    line-height: 20px;
  }
}
.catalog-item__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.catalog-item__actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .catalog-item__actions {
    flex-direction: row;
  }
  .catalog-item__actions .btn {
    width: auto;
  }
}

.product-hero {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding: 48px 0 80px;
}
.product-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(202, 0, 109, 0.1), transparent 70%);
}
.product-hero__inner {
  position: relative;
}
.product-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.product-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.product-hero__back svg {
  width: 12px;
  height: 12px;
}
.product-hero__back:hover {
  color: #CA006D;
}
.product-hero__media {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.product-hero__media-box {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero__media-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(202, 0, 109, 0.25));
}
.product-hero__name {
  text-align: center;
}
.product-hero__eyebrow {
  margin-bottom: 16px;
}
.product-hero__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 50px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .product-hero__title {
    font-size: 80px;
    line-height: 80px;
  }
}

.product-desc {
  background: #FFFFFF;
  padding-block: 5rem;
}
.product-desc__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .product-block {
    grid-template-columns: 1fr 2fr;
  }
}
.product-block__heading .eyebrow {
  margin-bottom: 12px;
}
.product-block__text {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
}
@media (min-width: 768px) {
  .product-block__text {
    font-size: 14px;
    line-height: 20px;
  }
}

.product-areas__title {
  margin-bottom: 24px;
}
.product-areas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .product-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-areas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .product-areas__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-areas__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #FAFAFA;
}
.product-areas__item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CA006D;
  margin-top: 6px;
  flex-shrink: 0;
}
.product-areas__item p {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .product-areas__item p {
    font-size: 14px;
    line-height: 20px;
  }
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-features__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDEDED;
}
.product-features__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.product-features__item .marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EFDAE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-features__item .marker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CA006D;
}
.product-features__item p {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .product-features__item p {
    font-size: 14px;
    line-height: 20px;
  }
}

.product-specs__title {
  margin-bottom: 24px;
}
.product-specs__table {
  border-radius: 16px;
  border: 1px solid #EDEDED;
  overflow: hidden;
}
.product-specs__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #EDEDED;
}
.product-specs__row:nth-child(even) {
  background: #FAFAFA;
}
.product-specs__row:last-child {
  border-bottom: 0;
}
.product-specs__label {
  align-self: center;
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .product-specs__label {
    font-size: 12px;
    line-height: 18px;
  }
}
.product-specs__value {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .product-specs__value {
    font-size: 14px;
    line-height: 20px;
  }
}

.product-docs {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding-block: 5rem;
}
.product-docs__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(202, 0, 109, 0.15), transparent 70%);
}
.product-docs__inner {
  position: relative;
}
.product-docs__eyebrow {
  margin-bottom: 12px;
}
.product-docs__title {
  color: #FFFFFF;
  margin-bottom: 40px;
}
.product-docs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .product-docs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-docs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-docs__cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .product-docs__cta {
    flex-direction: row;
  }
}
.product-docs__cta .btn {
  align-self: flex-start;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background-color 0.2s;
}
.doc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.doc-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(202, 0, 109, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.doc-card__icon svg {
  width: 18px;
  height: 18px;
  color: #CA006D;
  transition: color 0.2s;
}
.doc-card__dl {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.doc-card__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
}
.doc-card__subtitle {
  font-size: 10px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .doc-card__subtitle {
    font-size: 12px;
    line-height: 18px;
  }
}
.doc-card__size {
  font-size: 10px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .doc-card__size {
    font-size: 12px;
    line-height: 18px;
  }
}
.doc-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc-card:hover {
  border-color: #CA006D;
  background: rgba(202, 0, 109, 0.08);
}
.doc-card:hover .doc-card__icon {
  background: #CA006D;
}
.doc-card:hover .doc-card__icon svg {
  color: #FFFFFF;
}
.doc-card:hover .doc-card__dl {
  color: #CA006D;
}

.product-related {
  background: #FAFAFA;
  border-top: 1px solid #EDEDED;
  padding-block: 5rem;
}
.product-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.product-related__head .eyebrow {
  margin-bottom: 12px;
}
.product-related__head .btn {
  flex-shrink: 0;
}
.product-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .product-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.related-card__media {
  height: 200px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.related-card__eyebrow {
  margin-bottom: 6px;
}
.related-card__name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 20px;
  line-height: 28px;
}
.related-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.related-card__spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #EDEDED;
}
.related-card__spec:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.related-card__spec-label {
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .related-card__spec-label {
    font-size: 12px;
    line-height: 18px;
  }
}
.related-card__spec-value {
  font-size: 10px;
  line-height: 15px;
  color: #17010D;
  text-align: right;
}
@media (min-width: 768px) {
  .related-card__spec-value {
    font-size: 12px;
    line-height: 18px;
  }
}
.related-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.related-card__actions .btn {
  flex: 1;
  padding-inline: 12px;
}

.contacts-hero {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding-block: 5rem;
}
.contacts-hero__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(202, 0, 109, 0.15), transparent 70%);
}
.contacts-hero__inner {
  position: relative;
}
.contacts-hero__eyebrow {
  margin-bottom: 12px;
}
.contacts-hero__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 50px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .contacts-hero__title {
    font-size: 80px;
    line-height: 80px;
  }
}
.contacts-hero__desc {
  margin-top: 16px;
  max-width: 28rem;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .contacts-hero__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.contacts-channels {
  background: #FFFFFF;
  padding-block: 5rem;
}
.contacts-channels__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .contacts-channels__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
  transition: border-color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .contact-card {
    padding: 36px;
  }
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFDAE6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.contact-card__icon svg {
  width: 18px;
  height: 18px;
  color: #CA006D;
  transition: color 0.2s;
}
.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card__value {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 20px;
  line-height: 28px;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .contact-card__value {
    font-size: 24px;
    line-height: 36px;
  }
}
.contact-card__value:hover {
  color: #CA006D;
}
.contact-card__value--break {
  word-break: break-all;
}
.contact-card__value.is-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}
.contact-card__value svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-card__note {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
}
@media (min-width: 768px) {
  .contact-card__note {
    font-size: 14px;
    line-height: 20px;
  }
}
.contact-card__hours {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .contact-card__hours {
    font-size: 12px;
    line-height: 18px;
  }
}
.contact-card__hours svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.contact-card:hover {
  border-color: #CA006D;
  background: rgba(202, 0, 109, 0.03);
}
.contact-card:hover .contact-card__icon {
  background: #CA006D;
}
.contact-card:hover .contact-card__icon svg {
  color: #FFFFFF;
}

.contacts-office {
  background: #FAFAFA;
  border-top: 1px solid #EDEDED;
  padding-block: 5rem;
}
.contacts-office__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contacts-office__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contacts-office__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contacts-office__heading .eyebrow {
  margin-bottom: 12px;
}
.contacts-office__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.office-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.office-row__icon svg {
  width: 16px;
  height: 16px;
  color: #CA006D;
}
.office-row__label {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #665E62;
  margin-bottom: 4px;
}
.office-row__text {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .office-row__text {
    font-size: 14px;
    line-height: 20px;
  }
}
.office-row__text--accent {
  color: #CA006D;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.map-card__canvas {
  flex: 1;
  position: relative;
  background: rgba(239, 218, 230, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.map-card__pin {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.map-card__pin-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #CA006D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25);
}
.map-card__pin-dot svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}
.map-card__pin-label {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #EDEDED;
  text-align: center;
}
.map-card__pin-sub {
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .map-card__pin-sub {
    font-size: 12px;
    line-height: 18px;
  }
}
.map-card__pin-name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .map-card__pin-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.map-card__bar {
  padding: 16px 20px;
  border-top: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.map-card__bar-sub {
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .map-card__bar-sub {
    font-size: 12px;
    line-height: 18px;
  }
}
.map-card__bar-name {
  font-size: 12px;
  line-height: 18px;
  color: #17010D;
}
@media (min-width: 768px) {
  .map-card__bar-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.map-card__bar-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #CA006D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.map-card__bar-link svg {
  width: 15px;
  height: 15px;
  color: #FFFFFF;
}
.map-card__bar-link:hover {
  background: #DC0679;
}

.service-hero {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding-block: 5rem;
}
.service-hero__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(202, 0, 109, 0.15), transparent 70%);
}
.service-hero__line {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(202, 0, 109, 0.3), transparent);
}
.service-hero__inner {
  position: relative;
}
.service-hero__eyebrow {
  margin-bottom: 12px;
}
.service-hero__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 50px;
  line-height: 50px;
}
@media (min-width: 768px) {
  .service-hero__title {
    font-size: 80px;
    line-height: 80px;
  }
}
.service-hero__desc {
  max-width: 32rem;
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .service-hero__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.service-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-stats__divider {
  align-self: center;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

.service-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-stat__num {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .service-stat__num {
    font-size: 40px;
    line-height: 44px;
  }
}
.service-stat__label {
  font-size: 10px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .service-stat__label {
    font-size: 12px;
    line-height: 18px;
  }
}

.service-tiers {
  background: #FFFFFF;
  padding-block: 5rem;
}
.service-tiers__head {
  margin-bottom: 40px;
}
.service-tiers__head .eyebrow {
  margin-bottom: 12px;
}
.service-tiers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .service-tiers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
  transition: border-color 0.2s;
}
.tier-card:hover {
  border-color: #CA006D;
}
.tier-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.tier-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFDAE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-card__icon svg {
  width: 20px;
  height: 20px;
  color: #CA006D;
}
.tier-card__badge {
  height: 28px;
  padding-inline: 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #EFDAE6;
  color: #CA006D;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.33px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-card__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 20px;
  line-height: 28px;
}
.tier-card__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tier-card__item svg {
  width: 15px;
  height: 15px;
  color: #CA006D;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-card__item p {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
}
@media (min-width: 768px) {
  .tier-card__item p {
    font-size: 14px;
    line-height: 20px;
  }
}
.tier-card .btn {
  align-self: flex-start;
}
.tier-card--prime {
  background: #17010D;
  border-color: #17010D;
}
.tier-card--prime:hover {
  border-color: #17010D;
}
.tier-card--prime .tier-card__icon {
  background: #CA006D;
}
.tier-card--prime .tier-card__icon svg {
  color: #FFFFFF;
}
.tier-card--prime .tier-card__badge {
  background: rgba(202, 0, 109, 0.3);
  color: #FF6BB5;
}
.tier-card--prime .tier-card__title {
  color: #FFFFFF;
}
.tier-card--prime .tier-card__item p {
  color: rgba(255, 255, 255, 0.7);
}

.service-centers {
  background: #FAFAFA;
  border-top: 1px solid #EDEDED;
  padding-block: 5rem;
}
.service-centers__head {
  margin-bottom: 40px;
}
.service-centers__head .eyebrow {
  margin-bottom: 12px;
}
.service-centers__layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .service-centers__layout {
    flex-direction: row;
  }
}
.service-centers__tabs {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 1024px) {
  .service-centers__tabs {
    width: 280px;
  }
}
.service-centers__panel {
  flex: 1;
  min-width: 0;
}
.service-centers__panel-head {
  margin-bottom: 20px;
}
.service-centers__panel-label {
  margin-bottom: 4px;
}
.service-centers__panel-name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 20px;
  line-height: 28px;
}
.service-centers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .service-centers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .service-centers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.district-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #EDEDED;
  background: #FFFFFF;
  color: #17010D;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.district-tab:hover {
  border-color: #CA006D;
}
.district-tab__name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .district-tab__name {
    font-size: 14px;
    line-height: 20px;
  }
}
.district-tab__count {
  font-size: 11px;
  line-height: 16px;
  color: #665E62;
}
.district-tab__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.district-tab__badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #EDEDED;
  color: #665E62;
  font-size: 11px;
}
.district-tab.is-active {
  background: #17010D;
  border-color: #17010D;
  color: #FFFFFF;
}
.district-tab.is-active .district-tab__count {
  color: rgba(255, 255, 255, 0.5);
}
.district-tab.is-active .district-tab__badge {
  background: #CA006D;
  color: #FFFFFF;
}

.center-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEDED;
}
.center-card__city {
  display: flex;
  align-items: center;
  gap: 12px;
}
.center-card__city-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #EFDAE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.center-card__city-icon svg {
  width: 15px;
  height: 15px;
  color: #CA006D;
}
.center-card__city-name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: #17010D;
  font-size: 16px;
  line-height: 24px;
}
.center-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.center-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.center-card__row svg {
  width: 13px;
  height: 13px;
  color: #665E62;
  flex-shrink: 0;
}
.center-card__row--top {
  align-items: flex-start;
}
.center-card__row--top svg {
  margin-top: 2px;
}
.center-card__row--hours {
  padding-top: 8px;
  border-top: 1px solid #EDEDED;
}
.center-card__text {
  font-size: 10px;
  line-height: 15px;
  color: #665E62;
}
@media (min-width: 768px) {
  .center-card__text {
    font-size: 12px;
    line-height: 18px;
  }
}
.center-card__link {
  font-size: 10px;
  line-height: 15px;
  color: #17010D;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .center-card__link {
    font-size: 12px;
    line-height: 18px;
  }
}
.center-card__link:hover {
  color: #CA006D;
}
.center-card__link--break {
  word-break: break-all;
}

.service-cta {
  position: relative;
  overflow: hidden;
  background: #17010D;
  padding-block: 5rem;
}
.service-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(202, 0, 109, 0.12), transparent 65%);
}
.service-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .service-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.service-cta__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(202, 0, 109, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta__icon svg {
  width: 22px;
  height: 22px;
  color: #CA006D;
}
.service-cta__eyebrow {
  margin-bottom: 8px;
}
.service-cta__title {
  color: #FFFFFF;
  margin-bottom: 12px;
}
.service-cta__desc {
  max-width: 28rem;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .service-cta__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
.service-cta__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .service-cta__actions {
    flex-direction: row;
  }
}

.site-footer {
  background: #17010D;
}
.site-footer__inner {
  padding-block: 56px;
}
.site-footer__cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .site-footer__cols {
    flex-direction: row;
  }
}
.site-footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col--brand {
  gap: 20px;
}
.site-footer__logo img {
  height: 28px;
  width: auto;
}
.site-footer__about {
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 384px;
}
.site-footer__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 16px;
  color: #CA006D;
  padding-bottom: 4px;
}
.site-footer__link {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.site-footer__link:hover {
  color: #FFFFFF;
}
.site-footer__hours {
  font-size: 12px;
  line-height: 18px;
  color: #665E62;
}
.site-footer__hours--gap {
  margin-top: 4px;
}
.site-footer__bottom {
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}
.site-footer__bottom p {
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/*# sourceMappingURL=main.css.map */


.map-card__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.map-card__canvas {
  z-index: 2;
}

.map-card__pin {
  width: 160px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -24px);
}

.map-card__grid {
  z-index: -3;
}

.map-card__pin-label {
  transition: .3s;
}

.map-card__pin:hover .map-card__pin-label {
  opacity: 0;
}

.ymaps3--controls,
.ymaps3--map-copyrights {
  display: none !important;
}

.map-card__pin-wrapper {
  position: relative;
  width: 0;
  height: 0;
}