* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #fee3ec;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.txt-right {
  float: right;
}
.btn {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: #000;
  background-color: #f8d0e0;
}
.btn--small {
  font-size: 14px;
  padding: 0.55em 1.1em;
}
.btn--ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* Make FAQ buttons same color (desktop too) */
#faq .btn--ghost {
  background-color: #f8d0e0;
  color: #000;
  border: none;
}
#faq .btn--ghost:hover {
  background-color: #f8d0e0a4;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #f8d0e0a4;
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: #f8d0e0;
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.container {
  width: 100%;
  margin: auto;
  padding-left: var(--col-gap);
  padding-right: var(--col-gap);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--col-gap) * -1);
  margin-right: calc(var(--col-gap) * -1);
}
[class^="col-"] {
  padding-left: var(--col-gap);
  padding-right: var(--col-gap);
  box-sizing: border-box;
}
.col-1 {
  width: 8.333333%;
}
.col-2 {
  width: 16.666666%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666666%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666666%;
}
.col-9 {
  width: 72.999999%;
}
.col-10 {
  width: 83.333333%;
}
.col-11 {
  width: 91.666666%;
}
.col-12 {
  width: 100%;
}
[class*="row-cols-"] > .col {
  flex-grow: 0;
}
.row-cols-1 > .col {
  width: 100%;
}
.row-cols-2 > .col {
  width: 50%;
}
.row-cols-3 > .col {
  width: 33.333333%;
}
.row-cols-4 > .col {
  width: 25%;
}
.row-cols-5 > .col {
  width: 20%;
}
.row-cols-6 > .col {
  width: 16.666666%;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
  .col-md-1 {
    width: 8.333333%;
  }
  .col-md-2 {
    width: 16.666666%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333333%;
  }
  .col-md-5 {
    width: 41.666666%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333%;
  }
  .col-md-8 {
    width: 66.666666%;
  }
  .col-md-9 {
    width: 72.999999%;
  }
  .col-md-10 {
    width: 83.333333%;
  }
  .col-md-11 {
    width: 91.666666%;
  }
  .col-md-12 {
    width: 100%;
  }
  .row-cols-md-1 > .col {
    width: 100%;
  }
  .row-cols-md-2 > .col {
    width: 50%;
  }
  .row-cols-md-3 > .col {
    width: 33.333333%;
  }
  .row-cols-md-4 > .col {
    width: 25%;
  }
  .row-cols-md-5 > .col {
    width: 20%;
  }
  .row-cols-md-6 > .col {
    width: 16.666666%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .col-xl-1 {
    width: 8.333333%;
  }
  .col-xl-2 {
    width: 16.666666%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.333333%;
  }
  .col-xl-5 {
    width: 41.666666%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.333333%;
  }
  .col-xl-8 {
    width: 66.666666%;
  }
  .col-xl-9 {
    width: 72.999999%;
  }
  .col-xl-10 {
    width: 83.333333%;
  }
  .col-xl-11 {
    width: 91.666666%;
  }
  .col-xl-12 {
    width: 100%;
  }
  .row-cols-xl-1 > .col {
    width: 100%;
  }
  .row-cols-xl-2 > .col {
    width: 50%;
  }
  .row-cols-xl-3 > .col {
    width: 33.333333%;
  }
  .row-cols-xl-4 > .col {
    width: 25%;
  }
  .row-cols-xl-5 > .col {
    width: 20%;
  }
  .row-cols-xl-6 > .col {
    width: 16.666666%;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
}
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-header .contact {
  flex-wrap: nowrap;
}
.main-info .logo img {
  height: 34px;
  width: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-phone i {
  font-size: 16px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-actions .btn {
  min-width: 220px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 300px;
    max-width: 100%;
  }
}
.hero-actions .btn--ghost {
  background-color: #f8d0e0;
  color: #000;
  border: none;
}
@media screen and (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
.contact .contact-icon i {
  font-size: 20px;
  padding: 13px 16px;
  background-color: #ffffff40;
  border-radius: 50%;
  margin: 0 10px;
}
.contact .contact-main {
  width: auto;
}
.main-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.main-info {
  color: #fff;
  padding: 1.5em 0 1em;
  text-align: left;
}
.main-info .row {
  align-items: center;
}
.main-info .logo {
  margin-right: auto;
}
.header-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-ig i {
  font-size: 22px;
  line-height: 1;
}
.logo-text {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.main-footer .logo-text {
  font-size: 22px;
}
.main-info a {
  color: #fff;
}
.main-nav {
  margin: auto;
}
.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}
.main-nav.sticky {
  background: rgba(243, 157, 182, 0.15);
  backdrop-filter: blur(4.6px);
  -webkit-backdrop-filter: blur(4.6px);
}
.main-nav nav {
  margin-left: 15px;
  margin-right: 15px;
  background: rgba(243, 157, 182, 0.15);
  backdrop-filter: blur(4.6px);
  -webkit-backdrop-filter: blur(4.6px);
  display: flex;
  justify-content: space-between;
}
.main-nav nav a {
  display: block;
  padding: 1.5rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.main-nav nav a:hover,
.main-nav nav a:focus,
.main-nav nav a.active {
  background-color: #efa6baa6;
}

/* Mobile/layout fixes */
@media screen and (max-width: 768px) {
  .main-header {
    position: relative;
  }
  .main-info {
    padding: 1rem 0 0.75rem;
  }
  .main-info .row {
    gap: 10px;
  }
  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .header-phone {
    padding: 8px 10px;
  }
  .header-phone span {
    font-size: 14px;
  }
  .header-ig {
    width: 44px;
    height: 44px;
  }
  .btn--small {
    padding: 0.6em 1.15em;
  }

  .main-nav nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .main-nav nav::-webkit-scrollbar {
    display: none;
  }
  .main-nav nav a {
    padding: 1rem 0.8rem;
    white-space: nowrap;
  }

  /* Hero: avoid fixed heights on small screens */
  .slider-container {
    height: auto;
  }
  .slider-banner .item {
    min-height: 0;
    height: auto;
    padding-top: 110px;
  }
  .slider-banner .item-kv-1 {
    overflow: hidden;
  }
  .slider-banner .item h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }
  .slider-banner .item h3 {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .slider-banner .item-kv-txt {
    padding-top: 2.25em;
    padding-bottom: 2.25em;
    max-width: 520px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .fill-banner h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
}

@media screen and (max-width: 480px) {
  /* Mobile header: keep only nav (avoid layout jumps) */
  .main-info {
    display: none;
  }

  /* Prevent sticky nav overlap/jumps on mobile */
  .sticky {
    position: static;
  }
  .main-nav.sticky {
    position: sticky;
    top: 0;
  }
  .main-nav nav {
    margin-left: 0;
    margin-right: 0;
  }

  .main-info .row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .logo-text {
    font-size: 22px;
  }
  .header-actions {
    justify-content: flex-start !important;
    width: 100% !important;
    flex-wrap: wrap;
  }
  .header-phone {
    width: 100%;
    justify-content: center;
  }
  .btn--small {
    width: 100%;
    text-align: center;
  }

  .slider-banner .item {
    padding-top: 40px;
  }
  .slider-banner .item-kv-txt {
    padding-top: 2.2em;
    padding-bottom: 2.2em;
    width: 100%;
    max-width: 100%;
  }
  .slider-banner .item h2 {
    font-size: 2.35rem;
  }

  /* Hero: remove fixed heights on mobile */
  .slider-container,
  .slider-banner .item {
    height: auto !important;
    min-height: 0 !important;
  }
  /* Ensure background image covers full hero area */
  .slider-banner .item-kv-1 {
    background-size: cover !important;
    background-position: center center !important;
  }
  /* Force hero to full viewport width (avoid right gap) */
  .kv,
  .slider-banner,
  .slider-container,
  .slider-banner .item {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  /* Hero buttons: more compact on mobile */
  .hero-actions {
    gap: 10px;
    margin-top: 12px;
  }
  .hero-actions .btn {
    min-width: 0;
    padding: 0.85em 1.25em;
  }

  /* About ("Мастер Дарья") mobile spacing */
  .doc-section {
    padding-top: 2.25em;
    padding-bottom: 2.75em;
  }
  .doc-section h2 {
    font-size: 2.1rem;
    margin-bottom: 18px;
  }
  .doc-section .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
  }
  .doc-section p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  #prices h2 {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .main-footer .row {
    flex-direction: column;
    gap: 18px;
    margin-left: 0;
    margin-right: 0;
  }
  .main-footer .col-4 {
    width: 100%;
  }
  .main-footer [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  .main-footer .copyright {
    padding-top: 24px;
  }
  .slider-banner .item-kv-txt {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
.kv {
  background-color: #d3dce4;
}
.slider-banner {
  color: #fff;
  position: relative;
}
.slider-banner .container {
  position: relative;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 760px;
  margin: auto;
}
.slider-banner .item {
  min-height: 760px;
  display: block;
  padding-top: 160px;
}
.slider-banner .item h2 {
  font-size: 4rem;
}
.slider-banner .item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.slider-banner .item-kv-1 {
  position: relative;
}
.slider-banner .item-kv-1 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.slider-banner .item-kv-1 .container,
.slider-banner .item-kv-1 .item-kv-txt {
  position: relative;
  z-index: 1;
}
.slider-banner .item-kv-txt {
  display: block;
  padding-top: 5em;
  padding-bottom: 5em;
}
.slider-banner .slider-dot {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
}
.doc-section {
  background-color: #fee3ec;
  padding-top: 4em;
  padding-bottom: 5em;
  text-align: center;
}
.doc-section h2 {
  color: #272727;
  font-size: 3rem;
  margin-bottom: 30px;
}
.doc-section h3 {
  color: #272727;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.doc-section p {
  color: #868686;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.doc-section .icon {
  width: 130px;
  height: 130px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px;
}
.doc-section .icon:after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.doc-section .icon-pills:after {
  background-image: url(images/master-1.png);
  background-size: cover;
  background-position: center;
}
.doc-section .icon-doctor:after {
  background-image: url(images/master-2.png);
  background-size: cover;
  background-position: center;
}
.doc-section .icon-car:after {
  background-image: url(images/master-3.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768) {
  .doc-section {
    text-align: left;
  }
}
.fill-banner {
  color: #fff;
  padding-top: 5em;
  padding-bottom: 5em;
}
.banner-1-bg {
  background: url(images/mid-img.jpg) center no-repeat fixed;
  background-size: cover;
}
.banner-2-bg {
  background: url(images/bottom-img.jpg) center no-repeat fixed;
  background-size: cover;
}
.fill-banner h2 {
  font-size: 4rem;
  margin-bottom: 30px;
}
.fill-banner p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}
.price-card {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 8px 0 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#prices h2 {
  display: inline-block;
  background: rgba(254, 227, 236, 0.82);
  color: #1f1f1f;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: 16px;
  text-shadow: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.prices-inner {
  max-width: 980px;
  margin: 0 auto;
}
.price-carousel {
  position: relative;
  margin-top: 10px;
}
.price-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px;
  margin: 0;
}
.price-track::-webkit-scrollbar {
  height: 10px;
}
.price-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.price-tile {
  scroll-snap-align: start;
  flex: 0 0 292px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.price-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.price-nav--prev {
  left: -8px;
}
.price-nav--next {
  right: -8px;
}
.price-nav:hover {
  background: rgba(0, 0, 0, 0.45);
}
.price-tile {
  background: rgba(254, 227, 236, 0.82);
  color: #1f1f1f;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.price-tile h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-tile ul {
  margin: 0 0 14px;
  padding: 0;
}
.price-tile li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: #4b4b4b;
  font-size: 0.98rem;
}
.price-tile li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f98cac;
  margin-top: 0.4rem;
  flex: 0 0 8px;
}
.price-amount {
  margin-top: auto;
  margin-bottom: 14px;
  text-align: center;
}
.price-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.55);
}
.price-value {
  display: block;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  color: #1f1f1f;
}
.price-tile .btn {
  text-transform: none;
  border-radius: 999px;
  align-self: center;
}
.price-tile .btn.btn--small {
  font-size: 15px;
  padding: 0.65em 1.25em;
}
.price-list {
  margin: 0;
  padding-left: 0;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.55;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}
.price-list > div {
  margin: 0.45rem 0;
  max-width: 32rem;
}
.price-list b {
  font-weight: 800;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .item {
    position: relative;
  }
  .item img {
    border-radius: 5px;
  }
  .service-card .btn {
    border-radius: 5px;
    padding: 15px 30px 15px 15px;
    position: absolute;
    right: 0;
    bottom: 25px;
    width: 250px;
    max-width: 300px;
  }
  .service-card .btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 1.35rem;
    font-weight: 700;
    color: #ccc;
    opacity: 0;
    transform: translateX(-10px) scale(0);
    position: absolute;
    top: 11px;
    left: 15px;
    transition: transform 0.2s, opacity 0.6s ease-in;
  }
  .service-card .btn:hover {
    background-color: #272727;
    padding: 15px 0 15px 45px;
  }
  .service-card .btn:hover:before {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.blog {
  padding-top: 6.875em;
  padding-bottom: 6.875em;
}
.blog article {
  margin: 0 auto;
}
.blog h2 {
  color: #272727;
  font-size: 2.5rem;
  margin-bottom: 3.75rem;
}
.blog .post {
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 1rem;
}
.blog img {
  width: 100%;
  margin: 0 auto 20px;
}
.blog .post h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
.blog h2 a {
  color: #272727;
}
.blog .time {
  font-size: 1rem;
  font-weight: 400;
  color: #a5a5a5;
  margin-bottom: 1.75rem;
}
.blog {
  padding-left: 0.5rem;
}
.blog:before {
  content: "";
  border-left: 1px solid #bdbdbd;
  padding-right: 0.5rem;
}
.blog p {
  font-size: 0.9rem;
  color: #434445;
  line-height: 1.5;
}
.blog .btn {
  color: #fff;
  background-color: var(--main-color);
}
.blog .btn:hover {
  background-color: #4d4d4d;
}
.img-hover {
  width: 100%;
  display: inline-block;
  overflow: hidden;
}
.img-hover img {
  display: inline-block;
  transform: scale(1);
  transition: transform 0.5s;
}
.img-hover:hover img {
  transform: scale(1.1);
}
.main-footer {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 3em;
  padding-bottom: 3em;
  color: #fdfdfd;
  background-color: #f98cac;
}
.main-footer h3 {
  color: #fff;
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.375rem;
}
.main-footer p {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.main-footer .contact {
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}
.main-footer .contact a {
  color: #fff;
}
.main-footer .contact .contact-icon {
  align-self: flex-start;
}
.main-footer .contact .contact-icon i {
  color: #fff;
  width: 35px;
  padding: 0;
  background-color: transparent;
  margin: 0;
}
.footer-logo {
  margin-bottom: 1.85rem;
}
.footer-brand {
  text-align: center;
}
.footer-brand .footer-logo {
  margin-bottom: 0.75rem;
}
.footer-brand .sns {
  display: flex;
  justify-content: center;
}
.footer-brand .sns li {
  margin: 0;
}
.main-footer .sns li {
  display: inline;
  margin: 0 5px;
}
.main-footer .sns a {
  display: inline-block;
  color: #fee3ec;
  padding: 10px 12px;
}
.main-footer .icon-instagram a {
  padding: 14px 16px;
  font-size: 30px;
  line-height: 1;
}
.main-footer .sns a:hover {
  color: #fff;
}
.main-footer .copyright,
.main-footer .copyright a {
  color: #afd7eb;
  padding-top: 100px;
}
.form-group {
  display: flex;
}
.form-control {
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
}
.form-group .btn {
  color: #fff;
  padding: 0.75rem;
  background-color: #000;
  border-radius: 0.25rem;
  border: transparent;
  letter-spacing: normal;
}
.form-group .btn:hover {
  cursor: pointer;
  background-color: #333;
  border: transparent;
}
.submit-btn {
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #fff;
  display: block;
  border: 0;
  font-weight: 700;
  box-shadow: 0 0 14px -7px #ee6cff;
  background-color: #ff709b;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.submit-btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
.submit-btn:active {
  transform: scale(0.95);
}
.goTop {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 0.75rem;
  padding: 18px 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #f8d0e0;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 1.875rem;
  bottom: 1.5rem;
  cursor: pointer;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.goTop:after {
  content: "\f077";
}
.goTop:hover {
  background-color: #fee3ec;
  color: #fff;
}
.goTop:focus {
  outline: none;
}
.goTop.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

/* Final mobile overrides (must be last in file) */
@media screen and (max-width: 480px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  /* Prevent horizontal overflow from grid gutters on mobile */
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  [class^="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .main-header {
    position: relative !important;
  }
  .main-info {
    display: none !important;
  }

  .main-nav.sticky {
    position: sticky !important;
    top: 0 !important;
  }
  .main-nav nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .main-nav nav::-webkit-scrollbar {
    display: none;
  }
  .main-nav nav a {
    white-space: nowrap !important;
    padding: 1rem 0.8rem !important;
  }

  /* Hero full-width and cover */
  .kv,
  .slider-banner,
  .slider-container,
  .slider-banner .item {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .slider-container {
    height: auto !important;
  }
  .slider-banner .item {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 24px !important;
  }
  .slider-banner .item-kv-1 {
    background-size: cover !important;
    background-position: center center !important;
  }
  .slider-banner .item-kv-txt {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 2.2em !important;
    padding-bottom: 2.2em !important;
  }
  .slider-banner .item h2 {
    font-size: 2.35rem !important;
    line-height: 1.05 !important;
  }
  .slider-banner .item h3 {
    font-size: 1.1rem !important;
    line-height: 1.35 !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 0.9em 1.25em !important;
    border-radius: 999px !important;
    text-align: center !important;
  }

  /* Footer stack */
  .main-footer .row {
    flex-direction: column !important;
    gap: 18px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .main-footer .col-4 {
    width: 100% !important;
  }
  .main-footer [class^="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .main-footer {
    text-align: center;
  }
  .main-footer h3 {
    text-align: center;
  }
  .main-footer .contact {
    justify-content: center;
  }
  .main-footer .contact .contact-main {
    text-align: left;
  }
  .main-footer .sns {
    justify-content: center;
  }

  /* Center "Если ты впервые" block on mobile */
  #faq {
    text-align: center;
  }
  #faq .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0;
    padding: 0.9em 1.25em;
    line-height: 1;
  }
  #faq .btn.btn--ghost {
    margin-top: 12px;
    background-color: #f8d0e0;
    color: #000;
    border: none;
  }
}

@media screen and (max-width: 480px) {
  /* Center the prices heading only */
  #prices h2 {
    display: block !important;
    width: fit-content;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
}
