/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Формы возвращены после одобрения Роскомнадзором */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography - Cursive font */

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 43px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 34, 71, 0.3);
  opacity: 1;
}

.btn--primary {
  background: #cc2642;
  color: #fff;
}

.btn--large {
  padding: 20px 40px;
  font-size: 22px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-family: "Caveat", cursive;
  font-size: 36px;
  color: #fff;
  white-space: nowrap;
}

.logo span {
  color: #ff2247;
}

.nav__list {
  display: flex;
  gap: 31px;
}

.nav__link {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #ff2247;
  opacity: 1;
}

.header__btn {
  font-size: 20px;
  padding: 12px 25px;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  margin-top: 80px;
  background-color: #000;
}

.hero-banner__container {
  display: flex;
  align-items: flex-start;
  min-height: 600px;
  max-width: none;
  padding: 0;
  margin: 0;
}

.hero-banner__image {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-banner__image img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-banner__content {
  width: 50%;
  padding: 050px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.4em;
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.1;
}

.hero__title span {
  font-family: "Caveat", cursive;
  color: #ff2247;
  display: inline-block;
  transform: rotate(-20deg);
  margin-left: -10px;
  white-space: nowrap;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero__star {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
}

.hero__feature span {
  font-size: 1.3em;
  line-height: 1.4;
}

.hero__contact {
  background: rgb(23 23 23);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 30px;
  border-radius: 20px;
  width: fit-content;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__contact-left {
  flex-shrink: 0;
}

.hero__contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero__contact-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #ff2247;
  margin-bottom: 10px;
}

.hero__address {
  font-size: 18px;
  margin-bottom: 0;
  opacity: 0.9;
}

.hero__phone {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  font-family: "Caveat", cursive;
  font-size: 83px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #f12e4f;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #000;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  border-radius: 24px;
  padding: 22px 27px;
  min-height: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.service-card__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.service-card__duration {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  text-align: left;
}

.service-card__price {
  font-size: 25px;
  font-weight: 700;
  text-align: left;
}

.service-card__btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 77px;
  font-size: 20px;
  border: 1px solid #fff;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-card__btn:hover {
  transform: scale(1.05);
  border: 1px solid #ff8ca89c;
}

.services__cta {
  text-align: center;
}

/* Approach Section */
.approach {
  width: 100%;
  min-height: 700px;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  justify-content: flex-end;
}

.approach__content {
  width: 50%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach__title {
  font-family: "Caveat", cursive;
  font-size: 83px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1;
}

.approach__title span {
  color: #ff2247;
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approach__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach__item-title {
  font-size: 39px;
  font-weight: 600;
  color: #fff;
}

.approach__item-text {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

/* Certificates Section */
.certificates {
  padding: 100px 0;
  background: #000;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.certificate {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.certificate:hover {
  transform: scale(1.05);
}

.certificate img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.reviews__blur {
  position: absolute;
  width: 500px;
  height: 500px;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ffe960 0%, #ff4352 100%);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  pointer-events: none;
}

.reviews__title {
  font-family: "Caveat", cursive;
  font-size: 83px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.reviews__title span {
  color: #f75772;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.review-card__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__content {
  flex: 1;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-card__name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: #ffcf60;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #000;
  position: relative;
}

.contact .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.contact__content {
  flex: 1;
  text-align: center;
}

.contact__title {
  font-family: "Caveat", cursive;
  font-size: 83px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.1;
}

.contact__title-gradient {
  background: linear-gradient(90deg, #ff2247 0%, #f75050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact__phone {
  display: block;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact__form-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.contact__form-row .contact__input {
  flex: 1;
  min-width: 0;
}

.contact__form-row .contact__submit {
  flex: 0 0 auto;
  white-space: nowrap;
}

.contact__form-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.contact__input {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 60px;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: border-color 0.3s ease;
}

.contact__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact__input:focus {
  outline: none;
  border-color: #ff2247;
}

.contact__submit {
  padding: 18px 35px;
  border: none;
  border-radius: 60px;
  background: #c6213d;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__submit:hover {
  background: #ff2247;
  color: #fff;
}

.contact__buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact__btn svg {
  width: 24px;
  height: 24px;
}

.contact__btn--phone {
  background: #c6213d;
  color: #fff;
}

.contact__btn--phone:hover {
  background: #ff2247;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204, 38, 66, 0.4);
  opacity: 1;
}

.contact__btn--telegram {
  background: #0088cc;
  color: #fff;
}

.contact__btn--telegram:hover {
  background: #0099dd;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
  opacity: 1;
}

.contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.contact__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff2247;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact__checkbox a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.contact__checkbox a:hover {
  text-decoration: none;
  color: #ff2247;
}

.contact__image {
  flex: 0 0 500px;
  max-width: 500px;
}

.contact__image img {
  width: 100%;
  border-radius: 20px;
}

/* Messengers */
.messengers {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
  z-index: 100;
}

.messengers__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.messenger-tooltip {
  background: #fff;
  color: #000;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.messenger-tooltip::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 15px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
}

.messenger-tooltip__dot {
  width: 10px;
  height: 10px;
  background: #1ac56d;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 197, 109, 0.7);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
    box-shadow: 0 0 10px 5px rgba(26, 197, 109, 0.4);
  }
}

.messenger {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.messenger:hover {
  transform: scale(1.1);
  opacity: 1;
}

.messenger svg {
  width: 40px;
  height: 40px;
}

.messenger--phone {
  background: #cc2642;
  color: #fff;
}

.messenger--telegram {
  background: #328cf2;
  color: #fff;
}

.messenger--dikidi {
  position: relative;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
}

.messenger--dikidi::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.5);
  animation: dikidi-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes dikidi-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background: #212020;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgb(255 255 255 / 30%);
  box-shadow: 0 25px 80px rgb(176 63 82 / 15%);
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal__close:hover {
  opacity: 1;
  color: #ff2247;
}

.modal__body {
  display: flex;
}

.modal__left {
  flex: 1;
  padding: 40px;
  background: transparent;
  border-radius: 20px 0 0 20px;
  color: #fff;
  border-right: 1px solid rgba(255, 34, 71, 0.2);
}

.modal__right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0 20px 20px 0;
}

.modal__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.modal__title span {
  color: #db3853;
}

.modal__section {
  margin-bottom: 20px;
}

.modal__section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ff2247;
}

.modal__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal__section li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.modal__section li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #ff2247;
  font-weight: bold;
}

.modal__price-text {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
  margin-top: 20px;
}

.modal__price-value {
  color: #ff2247;
  font-weight: 700;
  font-size: 24px;
}

.modal__duration-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.modal__form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.modal__form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 25px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal__input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.modal__input:focus {
  outline: none;
  border-color: #ff2247;
  background: rgba(255, 34, 71, 0.1);
}

.modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal__input--promo {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.02);
}

.modal__input--promo::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.modal__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff2247;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal__checkbox a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.modal__checkbox a:hover {
  text-decoration: none;
  color: #ff2247;
}

.modal__submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
}

.modal__divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.modal__divider::before,
.modal__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.modal__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.modal__telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
  opacity: 1;
}

.modal__telegram svg {
  width: 22px;
  height: 22px;
}

.modal__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #cc2642 0%, #a01f35 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.modal__phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204, 38, 66, 0.4);
  opacity: 1;
}

.modal__phone-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.modal__phone-btn span,
.modal__phone-btn {
  white-space: nowrap;
  text-align: center;
}

/* Compact Modal (Universal Booking) */
.modal__content--compact {
  max-width: 450px;
}

.modal__booking {
  padding: 50px 40px;
  text-align: center;
}

.modal__booking .modal__title {
  text-align: center;
  margin-bottom: 10px;
}

.modal__booking .modal__form-subtitle {
  margin-bottom: 20px;
}

.modal__booking .modal__checkbox {
  font-size: 13px;
}

.modal__booking .modal__form {
  text-align: left;
}

/* Footer */
.footer {
  background: #1c1c1c;
  padding: 25px 0;
  text-align: center;
}

.footer__copyright {
  font-size: 22px;
  opacity: 0.9;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.footer__legal-link {
  font-size: 15px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__legal-link:hover {
  opacity: 1;
  color: #ff2247;
}

/* Contact section privacy note */
.contact__checkbox--privacy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1c1c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  flex: 1;
}

.cookie-banner__text a {
  color: #ff2247;
  text-decoration: underline;
}

.cookie-banner__btn {
  background: #ff2247;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 43px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 34, 71, 0.3);
}

/* Form success message */
.form-success {
  text-align: center;
  padding: 30px 20px;
  animation: fadeIn 0.5s ease;
}
.form-success__icon {
  width: 70px;
  height: 70px;
  background: #ff2247;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #fff;
}
.form-success__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.form-success__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Privacy checkbox in modals */
.modal__checkbox--privacy a {
  color: #fff;
  text-decoration: underline;
}

/* ========================
   RESPONSIVE STYLES
   ======================== */

/* Tablet */
@media (max-width: 1200px) {
  .hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 3em;
  }

  .section-title {
    font-size: 52px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificates__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__title {
    font-size: 64px;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__title {
    font-size: 56px;
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 992px) {
  .header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header__btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: transparent;
    padding: 100px 40px 40px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: none;
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 25px;
  }

  .nav__link {
    font-size: 24px;
  }

  .hero-banner {
    margin-top: 10px;
  }

  .hero-banner__container {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-banner__image {
    width: 100%;
    max-height: none;
    /* justify-content: center; */
  }

  .hero-banner__image img {
    max-height: 350px;
  }

  .hero-banner__content {
    width: 100%;
    padding: 30px 20px;
  }

  .header__container {
    justify-content: flex-end;
  }

  .burger {
    margin-left: auto;
  }

  .approach {
    min-height: auto;
    flex-direction: column;
    padding-bottom: 250px;
    background-position: bottom left;
  }

  .approach__content {
    width: 100%;
    padding: 40px 20px;
  }

  .approach__title {
    font-size: 64px;
  }

  .approach__item-title {
    font-size: 28px;
  }

  .approach__item-text {
    font-size: 18px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__title {
    font-size: 56px;
  }

  .contact .container {
    flex-direction: column;
  }

  .contact__image {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .modal__body {
    flex-direction: column;
  }

  .modal__left {
    border-radius: 20px 20px 0 0;
    padding: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 34, 71, 0.2);
  }

  .modal__right {
    flex: none;
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }

  .modal__form-title {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    font-size: 28px;
  }

  .hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 3em;
  }

  .hero__feature span {
    font-size: 16px;
  }

  .hero__star {
    width: 24px;
    height: 24px;
  }

  .hero__contact {
    padding: 20px 15px;
    /* align-self: flex-end; */
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: flex-start;
  }

  .hero__contact-right {
    width: 100%;
  }

  .hero__contact-title {
    font-size: 22px;
  }

  .hero__phone {
    font-size: 26px;
  }

  .section-title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .services {
    padding: 60px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
    min-height: 250px;
    gap: 20px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__price {
    font-size: 20px;
  }

  .service-card__btn {
    font-size: 18px;
    padding: 12px 10px;
  }

  .btn--large {
    padding: 15px 30px;
    font-size: 18px;
  }

  .approach {
    padding-bottom: 350px;
  }

  .approach__content {
    padding: 30px 15px;
  }

  .approach__title {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .approach__list {
    gap: 25px;
  }

  .approach__item {
    gap: 10px;
  }

  .approach__item-title {
    font-size: 22px;
  }

  .approach__item-text {
    font-size: 16px;
  }

  .certificates {
    padding: 60px 0;
  }

  .certificates__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certificate img {
    height: 300px;
  }

  .reviews {
    padding: 60px 0;
  }

  .reviews__title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .review-card__avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .review-card__header {
    flex-direction: column;
    gap: 10px;
  }

  .review-card__stars {
    justify-content: center;
  }

  .reviews__blur {
    width: 300px;
    height: 300px;
    left: -150px;
    filter: blur(100px);
  }

  .contact {
    padding: 60px 0;
  }

  .contact__title {
    font-size: 50px;
  }

  .contact__subtitle {
    font-size: 20px;
  }

  .contact__phone {
    font-size: 32px;
  }

  .contact__form-row {
    flex-direction: column;
  }

  .contact__form-row .contact__input,
  .contact__form-row .contact__submit {
    width: 100%;
  }

  .contact__input,
  .contact__submit {
    font-size: 18px;
    padding: 16px 25px;
  }

  .messengers {
    right: 15px;
    bottom: 15px;
  }

  .messenger {
    width: 50px;
    height: 50px;
  }

  .messenger svg {
    width: 28px;
    height: 28px;
  }

  .messenger-tooltip {
    font-size: 12px;
    padding: 10px 15px;
  }

  .footer__copyright {
    font-size: 16px;
  }

  .footer__legal-link {
    font-size: 13px;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-banner__text {
    font-size: 13px;
  }

  .contact__buttons {
    flex-direction: column;
  }

  /* Мобильная модалка услуг */
  .modal__content--service {
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal__body {
    flex-direction: column;
  }

  .modal__left,
  .modal__right {
    width: 100%;
    padding: 20px;
  }

  .modal__right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 22px;
  }

  .burger {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .burger span {
    width: 22px;
    height: 2px;
  }

  .hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 2em;
  }

  .hero__title span {
    margin-left: -10px;
    margin-top: 5px;
  }

  .hero__feature {
    gap: 12px;
  }

  .hero__feature span {
    font-size: 14px;
  }

  .hero__star {
    width: 20px;
    height: 20px;
  }

  .hero__contact-title {
    font-size: 18px;
  }

  .hero__address {
    font-size: 14px;
  }

  .hero__phone {
    font-size: 22px;
  }

  .hero__contact .btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contact__title {
    font-size: 50px;
  }

  .contact__subtitle {
    font-size: 16px;
  }

  .contact__phone {
    font-size: 26px;
  }

  .contact__form-row {
    flex-direction: column;
  }

  .contact__form-checks {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    max-width: none;
    padding: 80px 30px 30px;
  }
}

/* ========================
   PROMO POPUP
   ======================== */

.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.promo-popup.active {
  opacity: 1;
  visibility: visible;
}

.promo-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.promo-popup__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  border: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s ease;
}

.promo-popup.active .promo-popup__content {
  transform: scale(1) translateY(0);
}

.promo-popup__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.4);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.promo-popup__close:hover {
  color: #ff2247;
  transform: rotate(90deg);
}

.promo-popup__badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff2247, #ff6b6b);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 34, 71, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 34, 71, 0.3);
  }
}

.promo-popup__title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.promo-popup__title span {
  font-family: "Caveat", cursive;
  color: #ff2247;
  font-size: 32px;
  display: block;
}

.promo-popup__text {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
  margin-bottom: 10px;
}

.promo-popup__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.promo-popup__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.promo-popup__benefit svg {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}

.promo-popup__promo {
  background: #f8f8f8;
  border: 2px dashed rgba(255, 34, 71, 0.4);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
}

.promo-popup__promo-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-popup__promo-code {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ff2247;
  letter-spacing: 2px;
}

.promo-popup__copy {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-popup__copy svg {
  width: 20px;
  height: 20px;
  color: #888;
}

.promo-popup__copy:hover {
  background: rgba(255, 34, 71, 0.1);
}

.promo-popup__copy:hover svg {
  color: #ff2247;
}

.promo-popup__copy.copied {
  background: rgba(74, 222, 128, 0.2);
}

.promo-popup__copy.copied svg {
  color: #22c55e;
}

.promo-popup__btn {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(90deg, #cc2642, #ff2247);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 34, 71, 0.3);
}

.promo-popup__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 34, 71, 0.4);
}

.promo-popup__note {
  font-size: 11px;
  color: #999;
  margin-top: 10px;
}

/* Promo Popup Responsive */
@media (max-width: 480px) {
  .promo-popup__content {
    padding: 25px 20px;
  }

  .promo-popup__title {
    font-size: 22px;
  }

  .promo-popup__title span {
    font-size: 32px;
  }

  .promo-popup__promo-code {
    font-size: 22px;
  }

  .promo-popup__btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .promo-popup__countdown-value {
    font-size: 18px;
  }

  .promo-popup__countdown-item {
    min-width: 35px;
  }
}

/* Promo Countdown */
.promo-popup__countdown {
  background: linear-gradient(
    90deg,
    rgba(255, 34, 71, 0.08),
    rgba(255, 107, 107, 0.08)
  );
  border: 1px solid rgba(255, 34, 71, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.promo-popup__countdown-label {
  font-size: 10px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-popup__countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.promo-popup__countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 32px;
}

.promo-popup__countdown-value {
  font-size: 18px;
  font-weight: 800;
  color: #ff2247;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.promo-popup__countdown-unit {
  font-size: 8px;
  color: #888;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.promo-popup__countdown-sep {
  font-size: 14px;
  font-weight: 700;
  color: #ff2247;
  opacity: 0.7;
  margin-bottom: 10px;
}

@keyframes pulse-countdown {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.promo-popup__countdown-sep {
  animation: pulse-countdown 1s infinite;
}

/* Booking Modal with Views */
.modal__content--booking {
  max-width: 450px;
  overflow: hidden;
  transition: max-width 0.3s ease;
}

.modal__content--booking:has(.modal__view--contra.active) {
  max-width: 650px;
}

.modal__view {
  display: none;
}

.modal__view.active {
  display: block;
}

.modal__contra {
  padding: 35px 40px;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff2247 #2a2a2a;
}

.modal__contra::-webkit-scrollbar {
  width: 5px;
}

.modal__contra::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

.modal__contra::-webkit-scrollbar-thumb {
  background: #ff2247;
  border-radius: 3px;
}

.modal__contra .modal__title {
  text-align: center;
  margin-bottom: 20px;
}

.contra-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #ff2247;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

.contra-back-btn:hover {
  opacity: 0.8;
}

.contra-back-btn svg {
  width: 18px;
  height: 18px;
}

button.contra-back-btn.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  gap: 0;
  background: #cc2642;
  color: #fff;
  padding: 16px 30px;
  border-radius: 43px;
  font-size: 16px;
  font-weight: 500;
}

button.contra-back-btn.modal__submit svg {
  display: none;
}

.contra-modal-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
}

.contra-modal-section h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ff2247;
  margin-bottom: 10px;
}

.contra-modal-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contra-modal-section li {
  font-size: 13px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contra-modal-section li:last-child {
  border-bottom: none;
}

.contra-modal-section li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff2247;
  font-weight: bold;
}

.contra-modal-warning {
  background: rgba(255, 34, 71, 0.15);
  border: 1px solid rgba(255, 34, 71, 0.3);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
}

.contra-modal-warning p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

.contra-toggle {
  color: #fff;
  text-decoration: underline;
}

.contra-toggle:hover {
  color: #ff2247;
}

.modal__content--service {
  max-width: 750px;
  overflow: hidden;
  transition: max-width 0.3s ease;
}

.modal__content--service:has(.modal__view--contra.active) {
  max-width: 650px;
}

/* Компактная модалка услуг - форма слева, текст справа */
.modal__content--service .modal__body {
  display: flex;
  flex-direction: row;
}

.modal__content--service .modal__left--form {
  flex: 0 0 340px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 34, 71, 0.2);
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.modal__content--service .modal__left--form .modal__form-title {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.modal__content--service .modal__left--form .modal__form-subtitle {
  font-size: 13px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.modal__content--service .modal__left--form .modal__checkbox {
  font-size: 12px;
  text-align: left;
}

/* Кнопки под формой */
.modal__left--form .modal__phone-btn,
.modal__booking .modal__phone-btn {
  margin-top: 8px;
}

.modal__left--form .modal__telegram,
.modal__booking .modal__telegram {
  margin-top: 6px;
}

.modal__content--service .modal__left--form .modal__form {
  gap: 10px;
}

.modal__content--service .modal__left--form .modal__input {
  padding: 12px 15px;
  font-size: 14px;
}

.modal__content--service .modal__left--form .modal__checkbox {
  font-size: 11px;
}

.modal__content--service .modal__left--form .modal__submit {
  padding: 12px;
  font-size: 14px;
  margin-top: 5px;
}

.modal__content--service .modal__left--form .modal__phone-btn {
  font-size: 13px;
  padding: 10px 15px;
}

.modal__content--service .modal__left--form .modal__phone-btn svg {
  width: 18px;
  height: 18px;
}

.modal__content--service .modal__left--form .modal__telegram {
  font-size: 13px;
  padding: 10px 15px;
}

.modal__content--service .modal__left--form .modal__telegram svg {
  width: 18px;
  height: 18px;
}

.modal__content--service .modal__right--info {
  flex: 1;
  padding: 25px;
  border-left: none;
}

.modal__content--service .modal__right--info .modal__title {
  font-size: 22px;
  margin-bottom: 15px;
}

.modal__content--service .modal__right--info .modal__section {
  margin-bottom: 12px;
}

.modal__content--service .modal__right--info .modal__section h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.modal__content--service .modal__right--info .modal__section li {
  font-size: 13px;
  padding: 4px 0 4px 20px;
}

.modal__content--service .modal__right--info .modal__price-text {
  font-size: 16px;
  margin-top: 15px;
}

.modal__content--service .modal__right--info .modal__price-value {
  font-size: 20px;
}

.modal__content--service .modal__right--info .modal__duration-text {
  font-size: 13px;
}

/* Мобильная версия модалки услуг */
@media (max-width: 768px) {
  .modal__content--service {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal__content--service .modal__body {
    flex-direction: column;
  }

  .modal__content--service .modal__left--form {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 34, 71, 0.2);
    border-radius: 20px 20px 0 0;
    padding: 20px;
  }

  .modal__content--service .modal__right--info {
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }
}

/* ---------- Dikidi online booking button ---------- */
.btn--dikidi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #cc2642;
  border: 2px solid #cc2642;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: 12px;
}

.btn--dikidi:hover {
  background: #cc2642;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(204, 38, 66, 0.3);
}

.modal__dikidi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.modal__dikidi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
  color: #fff;
  opacity: 1;
}

.modal__dikidi-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.modal__form-divider {
  position: relative;
  text-align: center;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.modal__form-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.modal__form-divider span {
  position: relative;
  z-index: 1;
  background: #212020;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .btn--dikidi {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
}

