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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.page {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #151515f4;
  color: #ffffff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.main,
.header,
.footer {
  max-width: 420px;
  margin: 0 auto;
}

.page--lock {
  overflow: hidden;
}

.section {
  padding: 32px 20px;
}
.section__inner {
  width: 100%;
}
.section__title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 25px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff2f92;
}

.btn {
  display: flex;             
  justify-content: center;
  align-items: center;
  margin: 7px auto; 
  width: 300px;
  padding: 15px 35px;
  border-radius: 24px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  border: 1px solid #ff2f92;
  background: linear-gradient(135deg, #ff2f92, #ff5cc0);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(255, 47, 146, 0.7);
}
.btn--secondary {
  background: transparent;
  border: 1px solid #ff2f92;
  color: #ff2f92;
}
.btn--submit {
  margin-top: 20px;
  margin-bottom: 40px;
}
.btn_active {
  background: linear-gradient(135deg, #ff2f92, #ff5cc0);
  color: #fff;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 47, 146, 0.9);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(255, 47, 146, 0.7);
}
.contacts__btn:hover,
.contacts__btn.btn_active {
  background: linear-gradient(135deg, #ff2f92, #ff5cc0);
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 47, 146, 0.9);
  border-color: #ff2f92;
}

/* =======================
   HEADER
   ======================= */

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__brand {
  position: relative;
}
.header__logo-text {
  display: inline-flex;        
  flex-direction: column;
  margin-top: 2px;
  font-size: 35px;             
  font-weight: 700;
  padding: 18px 20px 8px;
  position: relative;
  z-index: 1; 
  text-transform: uppercase;
  letter-spacing: 0.18em;       
  line-height: 1.05;             
  color: #ff2f92;                
  text-shadow:
    0 0 6px rgba(255, 47, 146, 0.8),
    0 0 18px rgba(255, 47, 146, 0.6);
}
.header__logo-line {
  display: block;             
}
.header__logo-line--first {
  margin-left: 0;
}
.header__logo-line--second {
  margin-left: 75px;          
}

/* =======================
   BURGER
   ======================= */

.header__burger {
  position: relative;
  width: 24px;
  height: 18px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #ff2f92;
  transition: transform 0.5s ease, opacity 0.5s ease, top 0.5s ease, bottom 0.5s ease;
}
.header__burger-line:nth-child(1) {
  top: 0;
}
.header__burger-line:nth-child(2) {
  top: 8px;
}
.header__burger-line:nth-child(3) {
  bottom: 0;
}
.header__burger--active .header__burger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--active .header__burger-line:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}





.header__nav {
  position: fixed;                
  top: 75px;                     
  left: 50%;
  width: 350px;
  max-width: 420px;             
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: block;                  
  opacity: 0;
  transform: translate(-50%, -16px);   
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 5;                    
}
.header__nav--open {
  text-align: center;
  font-weight: 700;
  opacity: 0.8;
  transform: translate(-50%, 0);
  visibility: visible;
  pointer-events: auto;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav__link {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}




/* =======================
   HERO
   ======================= */

.hero {
  padding-top: 10px;
  padding-bottom: 32px;
}
.hero__card {
  position: relative;
}
.hero__card .header {
  position: absolute;
  top: 8px;       
  left: 0;
  right: 0;
  max-width: 100%;
  margin: 0;
}
.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding-top: 45px;
}
.hero__card .header__inner {
  align-items: flex-start;
  padding-top: 4px;
}
.hero__content {
  margin-top: 0;
}
.hero__label {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ff5cc0;
}
.hero__title {
   font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
}
.hero__subtitle {
  margin: 0 0 18px;
  font-size: 13px;
  color: #d4d4d4;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 230px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.hero__photo::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ff2f92 0%,
    rgba(255, 47, 146, 0.1) 70%,
    transparent 100%
  );
  filter: blur(30px);
}
.hero__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* =======================
   ABOUT
   ======================= */

.about {
  border-top: 1px solid #2b2b33;
  padding-top: 28px;
  padding-bottom: 32px;
  font-weight: 400;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__item {
  padding: 10px 22px;
  background: transparent;
  font-size: 15px;
  color: #f1f1f1;
  text-align: center;
}
.about__item:nth-child(odd) {
  border: 2px solid #ff2f92;
  border-left: none;
  border-radius: 0 999px 999px 0;
}
.about__item:nth-child(even) {
  border: 2px solid #ff2f92;
  border-right: none;
  border-radius: 999px 0 0 999px;
}
.about__item:last-child {
  margin-bottom: 4px;
}

/*=======================
   PORTFOLIO
   ======================= */

.portfolio {
  border-top: 1px solid #2b2b33;
}
.portfolio__slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;      
  height: 390px;          
}
.portfolio__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.portfolio__item {
  margin: 0;
  flex: 0 0 100%;          
}

.portfolio__item img {
  display: block;
  width: 100%;
  height: auto;
}
.portfolio__dots {
  display: none;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
  align-items: center;
}
.portfolio__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: #5a5a66;
  cursor: pointer;
}
.portfolio__dot--active {
  background-color: #ffffff;
}

/* =======================
   PRICE LIST
   ======================= */

.price {
  border-top: 1px solid #2b2b33;
}
.price__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #111118;
}
.price__service {
  font-size: 15px;
  color: #e8e8e8;
}
.price__value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.price__note {
  margin: 0;
  font-size: 15px;
  color: #cccccc;
}
.price__discount {
  color: #ff2f92;
  font-weight: 600;
}

/* =======================
   FAQ
   ======================= */

.faq {
  border-top: 1px solid #2b2b33;
}
.faq__list {
  display: grid;
  gap: 10px;
}
.faq__item {
  border-radius: 10px;
  background-color: #101018;
  padding: 0 12px;
}
.faq__item[open] {
  background-color: #141420;
}
.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 10px 0;
  font-size: 15px;
  color: #f1f1f1;
  position: relative;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: #ff2f92;
}
.faq__item[open] .faq__question::after {
  content: "−";
}
.faq__answer {
  margin: 0 0 10px;
  padding-bottom: 4px;
  font-size: 14px;
  color: #c9c9d4;
}

/* =======================
   CONTACTS
   ======================= */

.contacts {
  border-top: 1px solid #2b2b33;
}
.contacts__text {
  margin: 0 0 16px;
  font-size: 13px;
  color: #d6d6e1;
}
.contacts__text--form {
  margin-top: 40px;
}
.contacts__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #f5f5f5; 
  margin-top: 8px;
  margin-bottom: 16px;
}
.consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: #ff2c81;
}
.consent a {
  color: #ff2c81;
}
.contacts__btn {
  width: 100%;
}

/* .contacts__btn:first-child {
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5);
} */
.contacts__btn:last-child {
  border-color: #ff2f92;
}
.contacts__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
.contacts__map iframe {
  width: 100%;
  height: 220px;    
  border: 0;
  display: block;
}
.map-image {
  width: 100%;
  object-fit: cover;
}


/* =======================
   FOOTER
   ======================= */

.footer {
  border-top: 1px solid #2b2b33;
  padding: 1px 20px 24px;
}
.footer__inner {
  max-width: 420px;
  margin: 0 auto;
  font-size: 11px;
  color: #7a7a88;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.footer__link {
  color: #ff2f92;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__copyright {
  margin: 20px auto 0;
}
.footer__develop {
  margin: 10px auto 40px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 10px 14px;

  background: #15151b;            
  border: 1px solid #3a3a44;      
  border-radius: 8px;

  color: #f1f1f1;
  font-size: 13px;

  outline: none;
  box-sizing: border-box;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #777a85;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #ff2f92;
  box-shadow: 0 0 0 1px #ff2f92, 0 0 18px rgba(255, 47, 146, 0.6);
}