html, body {
    height: 100%;
    width: 100%;
   
    font-family: Arial, sans-serif;
}

.logo{
    display: flex;
    justify-content: flex-start;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.Htext h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 53px;
}

.Htext h3 span {
    display: block;
}

.Htext h3 .highlight {
    color: rgba(102, 107, 252, 1); 
}
.social-float {
  position: fixed;
  right: 20px;
  top: 14%;
  transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: #6366f1;
  border-radius: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; 
  transition: height 0.3s ease;
  height: 25px; 
    box-shadow:
      0 0 15px rgba(99,102,241,0.6),
      0 0 30px rgba(99,102,241,0.35);
}
.cont1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    width: 100%;    
}

.Htext {
    width: 80%;   

}

.toggle img {
  width: 25px;
  cursor: pointer;

}

.toggle {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.toggle img {
    width: 25px;
    height: auto;
    z-index: 2;
}


.vk-arrow {
    position: absolute;
 
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    z-index: 3;
    pointer-events: none;
}


.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: 0.25s ease;
  margin-top: 12px;
}


.panel a img {
  width: 28px;
}


.panel.active {
  opacity: 1;
}


.social-float.open {
  height: 120px; 
}

.panel img{
  width: 75px;
  cursor: pointer;
}
button {
  background-color: rgba(102, 107, 252, 1); 
   box-shadow:
      0 0 15px rgba(99,102,241,0.6),
      0 0 30px rgba(99,102,241,0.35);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
    position: relative;
    top: -60px; 


}


button:hover {
  background: rgba(206, 208, 255, 1);
}
.nav-header {
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.nav {
    position: relative;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    padding: 8px 14px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.nav ul li.active a {
    color: #6b6ffe;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0; 
    width: 140px;       
    height: 30px;
    background: rgb(230,230,230);
    border-radius: 18px;
    z-index: 1;
    transition: 0.3s ease;
    transform: translateX(0);
}


.nav ul li:hover a {
    color: #6b6ffe;
}
.nav ul li {
    position: relative;
}

.nav ul li::before {
    content: "";
    position: absolute;
    top: -6px;         
    left: 0;
    width: 0%;
    height: 4px;        
    background: rgba(102, 107, 252, 1);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav ul li:hover::before {
    width: 100%;
}

.nav ul li.active::before {
    width: 100%;
}



@media (max-width: 768px) {
  .card1 {
    flex: 0 0 100%; 
  }
}
.more-items {
  display: none;
}
.show-more-btn {
  margin-top: 10px;
  cursor: pointer;
  color: blue;
  
  border: none;
}
.show-more-btn {
  color: blue;
  background: none;
}

.show-more-btn:hover {
  color: blue !important;
  background: none !important;
}


.mobile-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 18px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
}



   @media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-header {
        display: none;
    }


  .nav-links {
    display: none !important;
  }

  .mobile-menu.show {
    display: flex !important;
    max-height: 500px;
    padding: 15px 20px;
  }

  .cont1{
    display: none;
  }

  .Htext span{
    font-size: 18px;
    width: 200px;
  }


  
  .mobile-menu.show a {
    opacity: 1;
    transform: translateY(0);
  }

  
  .mobile-menu.show a:nth-child(1) { transition-delay: 0.05s; }
  .mobile-menu.show a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu.show a:nth-child(3) { transition-delay: 0.25s; }
  .mobile-menu.show a:nth-child(4) { transition-delay: 0.35s; }
}


.burger {
    position: fixed;
    top: 50px;
    right: 20px;
    font-size: 52px;
    cursor: pointer;
    z-index: 1001;
    color: rgba(102, 107, 252, 1);
    display: none;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1000;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
}




.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9;
}

.overlay.show {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 10;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* сховане за правим краєм */
    width: 250px;
    height: 25%;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    z-index: 1001;
    transition: right 0.35s ease;
}

.mobile-menu.show {
    right: 0; /* виїжджає на екран */
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
    opacity: 1;
}




.mobile-menu a:hover a {
    color: #6b6ffe;
}
.mobile-menu a {
    position: relative;
}

.mobile-menu a::before {
    content: "";
    position: absolute;
    top: -6px;         
    left: 0;
    width: 0%;
    height: 4px;        
    background: rgba(102, 107, 252, 1);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.mobile-menu a:hover::before {
    width: 100%;
}

.mobile-menu a.active::before {
    width: 100%;
}

.cont2 {

    align-items: flex-start;
    width: 55%;


}

.Htext2 {
    font-weight: 700;
    font-size: 60px;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    left: 50px;
}

.Htext2 .highlight {
    color: rgba(102, 107, 252, 1);
}

.break {
    display: block;
}

.button2,
.Htext2,
.Htext3 {
    width: 100%;
    max-width: 600px;
}

.Htext3{
    font-family: "TT Firs Neue", sans-serif;
    font-weight: 500;      /* Medium */
    font-style: normal;
    font-size: 18px;
    line-height: 1;       
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.8);
}
.button2{
    margin-top: 90px;
}
.hero {
    width: 45%;
    margin: 0;
    position: relative;
}

/* Білий блок */
.hero-box {
    position: relative;
    height: 334px;
    max-width: 345px;   /* ⬅️ ЗМЕНШУЄМО */
    margin: 0 auto;     /* центруємо */
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Людина */
.hero-person {
    position: absolute;
    top: -40px;              /* ⬅️ піднімаємо ВИЩЕ білого блоку */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-person img {
    width: 320px;
}

/* Картки */
.info-card {
    position: absolute;
    width: 120px;
    padding: 20px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 2;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.4;
}


.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}


.info-card.left {
    background: linear-gradient(135deg, #6CA8FF, #4A7BFF);
    left: -92px;
    top: 160px;
}


.info-card.right {
    background: linear-gradient(135deg, #2BD4A4, #18B892);
    right: -107px;
    top: 10px;
   
}

.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
}


/* ================== MOBILE / TABLET ================== */
@media (max-width: 1024px) {

    .main-section {
        flex-direction: column;
        align-items: center;
    }

    .cont2 {
        width: 100%;
        text-align: center;
        align-items: center;
        transform: none;
    }

    .hero {
        width: 100%;
        display: flex;
        justify-content: center;
      
        background: transparent;
    }

    .hero-box {
        position: relative;
        max-width: 320px;
        padding-top: 200px;     /* місце під людину */
        padding-bottom: 40px;  /* місце під картки */
        background: transparent;
    }

    /* ===== ЛЮДИНА ===== */
    .hero-person {
        position: absolute;
        top: 1px;
        left: 45%;
        transform: translateX(-50%);
        z-index: 4;
    }

    .hero-person img {
        width: 270px;
        display: block;
    }

    /* ===== КРУГИ БІЛЯ ЛЮДИНИ ===== */
   .hero {
    position: relative;

}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 1;
}

/* СИНІЙ — зліва, пів круга */
.hero::before {
    background: #6CA8FF;
    left: -140px;    /* ⬅️ рівно половина */

}

/* ЗЕЛЕНИЙ — справа, пів круга */
.hero::after {
    background: #2BD4A4;
    right: -140px;
    top: 100px; 


}
.hero-box {
    position: relative;
    z-index: 2;
}



    .cards-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 24px;
        z-index: 3;
        position: relative;
    }

    .info-card {
        width: 48%;
        margin: 0;
        position: relative;
    }

    .info-card h4 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* ================== SMALL MOBILE ================== */
@media (max-width: 600px) {

    .Htext2 {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
    }

    .Htext2 span {
        display: block;
        font-family: 'TT Firs Neue', sans-serif;
        font-weight: 600;
        font-size: 38px;
        line-height: 38px;
        text-align: center;
    }

    .Htext3 {
        font-family: 'TT Firs Neue', sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-align: center;
    }

    .button2 {
        display: flex;
        justify-content: center;
    }
    .hero-box {
    background: transparent;
    box-shadow: none;
}

}
@media (max-width: 1024px) {
  .hero-person img {
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 65%,
      rgba(0,0,0,0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 65%,
      rgba(0,0,0,0) 100%
    );
  }
}
@media (max-width: 1024px) {
  .hero::after {
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 20%,
      rgba(0,0,0,0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 20%,
      rgba(0,0,0,0) 100%
    );
  }
}
@media (max-width: 600px) {

  .cont2 {
    width: 100%;
    text-align: center;
    align-items: center;
  }


  .Htext2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 14px;
  }

  .Htext2 span {
    display: inline;
    font-size: 44px;
    font-weight: 700;
  }

  .Htext2 .highlight {
    display: inline;
    color: rgba(102, 107, 252, 1);
  }

  .break {
    display: inline;
  }

  /* Підзаголовок */
  .Htext3 {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 6px;
    margin-bottom: 24px;
    color: rgba(0,0,0,0.7);
  }


  .button2 {
    display: flex;
    justify-content: center;
  }

  .button2 button {
    padding: 14px 26px;
    font-size: 15px;
    border-radius: 28px;
  }

}
@media (max-width: 600px) {

  .Htext2 {
    font-size: 34px;
    line-height: 1.15;
    text-align: center;
  }

  .Htext2 span:nth-child(1) {
    display: block;
  }

  .Htext2 span:nth-child(2),
  .Htext2 span:nth-child(3) {
    display: inline;
  }

  .Htext2 span:nth-child(3)::before {
    content: " ";
  }

}
@media (max-width: 600px) {

  .Htext2 {
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 700;     
    font-size: 42px;
    line-height: 38px;         
    letter-spacing: 0;
    text-align: center;
  }

  .Htext2 span:nth-child(1) {
    display: block;
  }
  .Htext2 span:nth-child(2),
  .Htext2 span:nth-child(3) {
    display: inline;
  }

  .Htext2 span:nth-child(3)::before {
    content: " ";
  }

}
@media (max-width: 600px) {

  .Htext3 {
    display: none;
  }
  .Htext2::after {
    content: "Надаємо розробку сайтів та просування терміном від 3-х днів";
    display: block;
    margin-top: 12px;

    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;

    color: rgba(0, 0, 0, 0.7);
  }

}
@media (max-width: 600px) {

  /* Ховаємо старий підзаголовок */
  .Htext3 {
    display: none;
  }

  /* Новий текст під заголовком */
  .Htext2::after {
    content: "Надаємо розробку сайтів та просування терміном від 3-х днів";
    display: block;
    margin-top: 20px;

    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 500;          /* Medium */
    font-size: 12px;
    line-height: 12px;         /* 100% */
    letter-spacing: 0;
    text-align: center;

    color: rgba(0, 0, 0, 0.7);
  }

}
.benefits {
  padding: 80px 20px;
  background: white;
}

.benefits-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* ===== TEXT ===== */
.benefits-text {
  width: 50%;
}

.benefits-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.benefits-text h2 span {
  color: #6b6ffe;
}

.benefits-text p {
  margin-top: 18px;
  font-weight: 500;
}

.benefits-text ul {
  margin-top: 12px;
  padding-left: 18px;
}

.benefits-text li {
  margin-bottom: 10px;
  font-size: 15px;
}

.calc-link {
  display: inline-block;
  margin-top: 20px;
  color: #6b6ffe;
  text-decoration: none;
  font-weight: 500;
}

/* ===== VISUAL ===== */
.benefits-visual {
  position: relative;
  width: 45%;
  height: 320px;
}

.circle {
  position: absolute;
  width: 240px;
  height: 240px;
  background: #6b6ffe;
  border-radius: 50%;
  right: 40px;
  top: 20px;
  z-index: 1;
}

.girl {
  position: absolute;
  width: 220px;
  right: 60px;
  top: 0;
  z-index: 2;
}

.stat {
  position: absolute;
  right: 250px;
  top: 40px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  font-size: 13px;
}

.stat strong {
  color: #6b6ffe;
  font-size: 18px;
}

.chat {
  position: absolute;
  right: 0;
  margin-top: 155px;
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  width: 220px;
  transform: translateY(12px); 

}

.chat p {
  font-size: 13px;
  margin-bottom: 8px;
}

.chip {
  display: inline-block;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
  color: #fff;
}

.chip.blue { background: #6b6ffe; }
.chip.green { background: #2bd4a4; }
.chip.cyan { background: #3abff8; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .benefits-box {
    flex-direction: column;
    gap: 40px;
  }

  .benefits-text,
  .benefits-visual {
    width: 100%;
    
  }

  .benefits-visual {
    height: 360px;
  }
}
@media (max-width: 768px) {

  .benefits-box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* ===== ТЕКСТ ===== */
  .benefits-text {
    width: 100%;
    text-align: center;
    padding: 0 16px;
     font-family: 'TT Firs Neue', sans-serif;
  font-weight: 500;        /* Medium */
  font-size: 25px;
  line-height: 31px;
  letter-spacing: 0;
  text-align: center;
  }

  .benefits-text h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 14px;
     font-family: 'TT Firs Neue', sans-serif;
  font-weight: 600;        /* Medium */
  font-size: 25px;
  line-height: 31px;
  letter-spacing: 0;
  text-align: center;
  }

  .benefits-text h2 span {
    display: block;
    color: #6b6bff;
  }

  .benefits-text p {
    display: none; /* "Ви зможете:" ховаємо як на макеті */
  }

  /* ===== КАПСУЛИ З UL ===== */
  .benefits-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    
  }

  .benefits-text li {
    background: #eef2f5;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  /* ===== КНОПКА ===== */
  .calc-link {
    display: inline-block;
    background: #6b6bff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 22px;
    font-size: 14px;
    text-decoration: none;
  }

  /* ===== ВІЗУАЛ ===== */
  .benefits-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 170px;
  }

  .circle {
    position: absolute;
    left: 50%;
                /* ⬅️ рухає вгору / вниз */
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    z-index: 1;

  }

  .girl {
    width: 240px;
    position: relative;
    z-index: 2;
    left: 2%;

  }

  /* ===== +86% ===== */
  .stat {
    position: absolute;
    left: 14px;
    bottom: 230px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-size: 13px;
    z-index: 3;
  }

  .stat strong {
    display: block;
    font-size: 18px;
    color: #6b6bff;
    justify-content: center;
  }

  /* ===== ЧАТ ===== */
  .chat {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    z-index: 4;
  }

  .chat p {
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
  }

  .chat .chip {
    display: block;
    margin: 6px auto;
    font-size: 13px;
  }
  .benefits-visual {
    overflow: visible; /* КЛЮЧОВЕ */
  }

  .stat {
    position: absolute;
    left: 8px;
    top: 200px;       /* замість bottom */
    z-index: 10;
    background: #fff;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 150px;
    width: 100%;
  }

  .stat strong {
    font-size: 21px;
    color: #6b6bff;
    display: block;
  }

  .stat span {
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }
}

@media (max-width: 768px) {

  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;          /* відступ між картками */
    padding: 0 46px;   /* щоб не липли до країв */
  }

  .card1 {
    width: 100%;
    max-width: 100%;
        background-clip: padding-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    max-height: 665px;
    height: 100%;
  }
}



@media (max-width: 768px) {
.calc {
  background: #6366f1;
  padding: 40px 0;
    min-height: 60vh;   
  height: auto;
  background: #6366f1;
  position: relative;

}

.steps{
      display: flex;
    justify-content: center; /* центр по горизонталі */
    align-items: center;     
}

.dot{
  margin-right: 20px;

}

.calc-container {
  max-width: 420px;
  margin: 0 auto;        
  padding: 0 16px;
      display: flex;
    flex-direction: column;
    align-items: center;
    
padding-bottom: 120px;

}

.calc-left {
  width: 100%;
  text-align: center;    
}

  .radio-card,
  .option {
    width: 100%;
    max-width: 100%;
  }

  .calc-left,
  .calc-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
 
  .calc-right {
    display: none;
  }




  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  
  .options {
    grid-template-columns: 1fr;
    padding: 0;
    width: 90%;
  }

.actions {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.form-fields {
  display: flex;
  flex-direction: column;
  align-items: center;   /* центрує інпути */

  gap: 14px;
  margin-top: 1px;
  width: 100%;           /* ❗ не fit-content */
}

.form-fields input {
  width: 85%;
  max-width: 300px;
}

  .next-btn {
    display: block;
    margin: 0 auto;
    width: 240px;
  }
  .quiz-title{
    margin-right: 20px;
  }
  .hidden h4{
    display: block;
  }
}


.wishes-textarea {
  resize: none;
  width: 100%;
  max-width: 600px !important;
  min-height: 137px;
  padding: 12px;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  

}


@media (max-width: 768px) {

  section.calc {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }

  section.calc .calc-container {
    max-width: 100vw !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

}
@media (max-width: 768px) {
  .wishes-textarea {
  resize: none;        
  width: 55%;
  min-height: 220px;
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 70px;
}

  .calc-options,
  .options,
  .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
     align-items: flex-start;
     
  }


  .radio-card,
  .option,
  .calc-option {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    border-radius: 24px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  
  .radio-card span,
  .option span,
  .calc-option span {
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }

 
  .radio-card input,
  .option input,
  .calc-option input {
  
    flex-shrink: 0;
  }

}

@media (max-width: 768px) {
  .options {
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 14px;
  
  }
  .option {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 12px;
    padding-left: 20px;
    text-align: left;
  }

  .option span {
    text-align: left;
  }


}

@media (max-width: 480px) {

  body {
    overflow-x: hidden;
  }

  .form-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }




}
.form-fields {
  display: flex;
  justify-content: flex-start;

  gap: 14px;
  margin-top: 25px;
}

.form-fields input {
  width: 60%;
  max-width: 220px;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  
}


.benefits-visual {
  position: relative;
}


.circle {
  z-index: 1;
}


.girl {
  position: absolute;
  z-index: 5;
}


.chat {
  position: absolute;
  z-index: 3;

}


.stat {
  position: absolute;
  z-index: 4;
}
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  gap: 60px;
  font-family: Arial, sans-serif;
}

.process-left {
  max-width: 420px;
}

.process-left h2 {
  font-size: 42px;
  line-height: 1.1;
}

.process-left h2 span {
  color: #5a6bff;
  border-bottom: 3px solid #5a6bff;
}

.process-left p {
  margin: 25px 0;
  color: #555;
  font-size: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #5a6bff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.process-right {
  flex: 1;
}

.step {
  margin-bottom: 35px;
}

.step span {
  color: #999;
  font-size: 14px;
}

.step h3 {
  font-size: 18px;
  margin: 6px 0;
}

.step h3 a {
  color: #5a6bff;
  text-decoration: none;
}



.step p {
  font-size: 14px;
  color: #666;
  max-width: 520px;
}
.card1{
  position: relative;
  background: white;
  width: 330px;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #5a6bff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.image-box {
  width: 150px;
  height: 100px;
  margin: 10px auto 15px;
  border: 3px solid #ddd; 
  border-radius: 5px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.image-box img {
  width: 70%;
  height: auto;
}

h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.price {
  color: #333;
  font-size: 16px;
}

.price span {
  color: #c0392b;
  font-weight: bold;
}

ul {
  list-style: none;
  text-align: left;
  margin: 15px 0;
  padding: 0;
}

ul li {
  margin: 8px 0;
  font-size: 15px;
}

button {
  background: #5a6bff;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #5a6bff;
}
.wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: auto;
display: block;

}

.more-items {
  display: none;
}

.show-more-btn {
 background-color: white;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 70px;
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px; 
  justify-content: center; 
}

.card1 {
  flex: 0 0 calc(27% - 40px);
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  padding-bottom: 150px; 
  margin-top: 100px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  height: 620px;
}


.card1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 250%;
  height: 140px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23666bfc' d='M0,224L40,218.7C80,213,160,203,240,170.7C320,139,400,85,480,96C560,107,640,181,720,192C800,203,880,149,960,160C1040,171,1120,245,1200,250.7C1280,256,1360,203,1400,181.3L1440,160L1440,320L0,320Z'/></svg>") repeat-x;

  background-size: cover;
  animation: wave1 8s linear infinite;
  opacity: 0.9;
  
}


.card1::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 250%;
  height: 110px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23259385' d='M0,96L40,128C80,160,160,224,240,224C320,224,400,160,480,160C560,160,640,224,720,218.7C800,213,880,139,960,106.7C1040,75,1120,85,1200,90.7C1280,96,1360,96,1400,96L1440,96L1440,320L0,320Z'/></svg>") repeat-x;
  background-size: cover;
  animation: wave2 12s linear infinite;
  opacity: 0.6;
}


.card1 .wave1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23259385' d='M0,160L40,144C80,128,160,96,240,122.7C320,149,400,235,480,266.7C560,299,640,277,720,256C800,235,880,213,960,181.3C1040,149,1120,107,1200,112C1280,117,1360,171,1400,197.3L1440,224L1440,320L0,320Z'/></svg>") repeat-x;
  background-size: cover;
  animation: wave3 10s linear infinite;
  opacity: 0.5;
}


.card1 .wave2 {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 200%;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23259385' d='M0,128L40,144C80,160,160,192,240,192C320,192,400,160,480,160C560,160,640,192,720,192C800,192,880,160,960,133.3C1040,107,1120,85,1200,90.7C1280,96,1360,128,1400,144L1440,160L1440,320L0,320Z'/></svg>") repeat-x;
  background-size: cover;
  animation: wave4 14s linear infinite;
  opacity: 0.4;
}


@keyframes wave1 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes wave2 { 0% { transform: translateX(0); } 100% { transform: translateX(-30%); } }
@keyframes wave3 { 0% { transform: translateX(0); } 100% { transform: translateX(-40%); } }
@keyframes wave4 { 0% { transform: translateX(0); } 100% { transform: translateX(-35%); } }

/* 1. Повне скидання відступів браузера для всього сайту */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Запобігає появі горизонтальної прокрутки */
}

/* 2. Гарантуємо, що секція займає всю ширину */
.pdrop-quiz-section {
    width: 100vw; /* Розтягує на всю ширину вікна перегляду */
    margin-left: calc(-50vw + 50%); /* Центрує секцію, якщо вона всередині іншого контейнера */
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}
:root {
    --pdrop-main: #5D5FEF;
    --pdrop-white: #ffffff;
    --pdrop-text: #ffffff;
}

/* Скидання стилів для секції квізу */
.pdrop-quiz-section * { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Arial', sans-serif; 
}

/* ОСНОВНИЙ БЛОК (ПК) */
.pdrop-quiz-section {
    width: 100%;
    height: 600px; /* Фіксована висота для ПК */
    background-color: var(--pdrop-main);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--pdrop-text);
}

.pdrop-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 600px; 
    min-height: 600px; 
}

/* Контентна частина */
.pdrop-quiz-content { 
    flex: 1; 
    max-width: 600px; 
}

#pdrop-core-heading { 
    font-size: 2.5rem; 
    margin-bottom: 15px; 
    font-weight: 700; 
    color: #fff;
}

.pdrop-subtitle { 
    font-size: 1rem; 
    opacity: 0.9; 
    margin-bottom: 30px; 
    color: #fff;
}

/* Індикатори */
.pdrop-steps-indicator { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 30px; 
}

.pdrop-dot { 
    width: 12px; 
    height: 12px; 
    border: 2px solid white; 
    border-radius: 50%; 
    opacity: 0.4;
}

.pdrop-dot.active { 
    background: white; 
    opacity: 1;
    box-shadow: 0 0 10px white; 
}

/* Варіанти вибору */
.pdrop-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.pdrop-option {
    background: var(--pdrop-white);
    color: #333;
    padding: 15px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.pdrop-option:hover { 
    transform: translateY(-2px); 
}

.pdrop-custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    position: relative;
}

/* Прихований радіо-інпут */
.pdrop-option input[type="radio"] { 
    display: none; 
}

.pdrop-option input[type="radio"]:checked + .pdrop-custom-radio { 
    background: var(--pdrop-main); 
    border: 4px solid #fff; 
    box-shadow: 0 0 0 2px var(--pdrop-main);
}

/* Поля вводу (Крок 3 та 4) */
#pdrop-wishes {
    width: 100%;
    height: 220px;
    resize: none;
    border-radius: 20px;
    padding: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.pdrop-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pdrop-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    color: #333;
}

/* Футер */
.pdrop-quiz-footer { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: 20px;
}

.pdrop-btn-next {
    background: var(--pdrop-white);
    color: var(--pdrop-main);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.pdrop-social-icon img { 
    width: 45px; 
    height: 45px; 
    vertical-align: middle; 
}

/* Телефонний мокап */
.pdrop-quiz-mockup { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end; 
}

.pdrop-phone-frame {
    width: 250px;
    height: 500px;
    border: 8px solid #222;
    border-radius: 40px;
    background: #000;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pdrop-phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdrop-logo-in-phone { 
    color: var(--pdrop-main); 
    font-weight: bold; 
    font-size: 1.2rem; 
    text-align: center; 
}

/* Керування відображенням кроків */
.pdrop-frame { 
    display: none; 
}

.pdrop-frame-active { 
    display: block !important; 
    animation: pdropFadeIn 0.4s ease-in-out; 
}

@keyframes pdropFadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* --- АДАПТАЦІЯ --- */

@media (max-width: 1100px) {
    .pdrop-quiz-mockup { 
        display: none !important; 
    }
    .pdrop-quiz-content { 
        max-width: 100%; 
        text-align: center; 
    }
    .pdrop-steps-indicator, .pdrop-quiz-footer { 
        justify-content: center; 
    }
    .pdrop-options-grid {
        max-width: 550px;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 900px) {
    /* Зменшуємо висоту фону (в 2 рази компактніше) */
    .pdrop-quiz-section { 
        height: auto !important; 
        min-height: 300px; /* було 600 */
        padding: 30px 10px; 
    }
    .pdrop-container { 
        flex-direction: column; 
        height: auto; 
        min-height: auto; 
        padding: 0;
    }
    #pdrop-wishes { 
        height: 150px !important; 
    }
    #pdrop-core-heading { 
        font-size: 1.8rem; 
    }
}

@media (max-width: 600px) {
    .pdrop-options-grid { 
        grid-template-columns: 1fr; 
    }
    .pdrop-quiz-footer { 
        flex-direction: column; 
        width: 100%; 
    }
    .pdrop-btn-next { 
        width: 100%; 
    }
    .pdrop-contact-stack {
        gap: 10px;
    }
    .pdrop-input {
        padding: 12px 15px;
    }
}

/* 1. Глобальне скидання для всієї секції */
.pdrop-quiz-section {
    width: 100%;
    min-height: 600px; /* На ПК тримаємо 600px */
    background-color: var(--pdrop-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px; /* Відступи, щоб не було впритик */
    box-sizing: border-box;
}

.pdrop-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Відстань між текстом і телефоном */
}

/* 2. Контентна частина */
.pdrop-quiz-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

/* 3. Адаптація під Ноутбуки та Планшети (1100px і менше) */
@media (max-width: 1100px) {
    .pdrop-quiz-mockup {
        display: none !important; /* Ховаємо телефон, коли стає тісно */
    }
    .pdrop-quiz-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .pdrop-steps-indicator, 
    .pdrop-quiz-footer {
        justify-content: center;
    }
    .pdrop-options-grid {
        margin: 0 auto 30px auto;
    }
}

/* 4. Адаптація під Мобільні (900px і менше) */
@media (max-width: 900px) {
    .pdrop-quiz-section {
        height: auto !important; /* Висота підлаштовується під контент */
        min-height: 400px; 
        padding: 50px 25px; /* Більше місця навколо контенту */
    }
    
    #pdrop-core-heading {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    /* Щоб варіанти не були занадто широкими на планшетах */
    .pdrop-options-grid {
        max-width: 450px;
        grid-template-columns: 1fr; /* Один за одним для зручності */
    }

    #pdrop-wishes {
        height: 160px !important; /* Золота середина для кроку 3 */
    }
}

/* 5. Для зовсім маленьких екранів (480px і менше) */
@media (max-width: 480px) {
    .pdrop-quiz-section {
        padding: 30px 15px; /* Компактні відступи для вузьких екранів */
    }

    #pdrop-core-heading {
        font-size: 1.5rem !important;
    }

    .pdrop-option {
        padding: 12px 15px; /* Менші кнопки, щоб не "тиснули" */
        font-size: 13px;
    }

    .pdrop-btn-next {
        width: 100%; /* Кнопка на весь екран */
        padding: 14px;
    }

    .pdrop-quiz-footer {
        flex-direction: column; /* Соцмережі під кнопку */
        gap: 15px;
    }
}

  
/* 1. Ізоляція контейнера, щоб нічого не наповзало */
.pdrop-quiz-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* На ПК притискаємо до лівого краю */
    position: relative !important;
}

/* 2. Сітка варіантів — фіксуємо простір */
.pdrop-options-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    margin-bottom: 30px !important; /* Цей маржин виштовхує кнопку вниз */
    width: 100% !important;
    max-width: 550px !important;
}

/* 3. Кнопка — "якоримо" її внизу */
.pdrop-quiz-footer {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important; /* Додатковий простір зверху */
    width: 100% !important;
    clear: both !important; /* Щоб не заважали обтікання (float) */
}

/* 4. Сама кнопка — прибираємо будь-які зміщення */
.pdrop-btn-next {
    position: relative !important;
    top: 0 !important;
    margin: 0 !important;
    transform: none !important;
    display: block !important;
    padding: 15px 40px !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

/* 5. Адаптація для мобілок (коли все по центру) */
@media (max-width: 1100px) {
    .pdrop-quiz-content {
        align-items: center !important; /* Центруємо все */
        text-align: center !important;
    }
    
    .pdrop-options-grid {
        margin: 0 auto 30px auto !important;
    }

    .pdrop-quiz-footer {
        justify-content: center !important;
    }
}

@media (max-width: 600px) {
    .pdrop-options-grid {
        grid-template-columns: 1fr !important; /* Один варіант у рядок */
        max-width: 100% !important;
    }
}
/* 1. РОЗТЯГУЄМО ФОН (виправляємо білу смугу справа) */
.pdrop-quiz-section {
    width: 100% !important;
    background-color: #5D5FEF !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    /* Якщо квіз всередині вузького блоку сайту, це розтягне його примусово */
    box-shadow: 0 0 0 100vmax #5D5FEF !important;
    clip-path: inset(0 -100vmax);
}

.pdrop-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* 2. КОНТЕНТ (виправляємо накладання кнопки) */
.pdrop-quiz-content {
    flex: 1 !important;
    max-width: 650px !important;
    display: flex !important;
    flex-direction: column !important; /* Тільки вертикальна черга */
    z-index: 5 !important;
}

/* Стилі для кроків - прибираємо будь-яке позиціонування, що ламає верстку */
.pdrop-frame {
    display: none !important;
    width: 100% !important;
    position: relative !important;
}

.pdrop-frame-active {
    display: flex !important;
    flex-direction: column !important;
}

/* 3. СІТКА ВАРІАНТІВ */
.pdrop-options-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* 2 колонки на ПК */
    gap: 15px !important;
    margin: 30px 0 !important; /* Відступи зверху і знизу, щоб кнопка не налізала */
    width: 100% !important;
}

/* 4. ФУТЕР (КНОПКА + СОЦМЕРЕЖІ) */
.pdrop-quiz-footer {
    display: flex !important;
    flex-direction: column !important; /* Кнопка, а під нею Telegram */
    align-items: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.pdrop-btn-next {
    width: fit-content !important;
    min-width: 240px !important;
    padding: 18px 45px !important;
    background: #ffffff !important;
    color: #5D5FEF !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* --- АДАПТАЦІЯ (точно як на другому фото) --- */

@media (max-width: 1100px) {
    .pdrop-quiz-mockup { display: none !important; }
    
    .pdrop-quiz-content {
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .pdrop-options-grid {
        grid-template-columns: 1fr !important; /* 1 колонка на мобільних */
        max-width: 500px !important;
        margin: 25px auto !important;
    }

    .pdrop-quiz-footer {
        align-items: center !important;
    }

    #pdrop-core-heading {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .pdrop-btn-next {
        width: 100% !important; /* Кнопка на всю ширину екрана */
    }
}

.faq {

  font-family: Arial, sans-serif;
  color: #222;

}
.faq h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.faq-item {
  border-top: 1px solid #222;
}

.faq-item:last-child {
  border-bottom: 1px solid #222;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.35s ease;
  padding-right: 40px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

body {
  font-family: Inter, Arial, sans-serif;
 
}
.info-wrapper1,
.info-wrapper1 * {
  box-sizing: border-box;
}

.info-wrapper1 {
  font-family: Inter, Arial, sans-serif;
 
}


.info-wrapper1 {
  padding: 50px;

}
.info-card1 {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 28px;
  width: 180px;
  position: relative;
  box-shadow: 0 35px 40px rgba(0,0,0,0.06);
  

}

.info-card1 h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #111;
  line-height: 1.2;
}

.info-card1 h3 span {
  color: #5b6cff;
}


.info-card1 {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 28px;
  width: 680px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.info-card1 h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #111;
  line-height: 1.2;
}

.info-card2 h3 span {
  color: #5b6cff;
}
.info-section1 {
  display: flex;
  width: 100%;
  gap: 60px;
}

.info-card1:last-child {
  margin-left: auto;
}

.live-payments1 {
  position: absolute;
  top: 32px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.live-item1:nth-child(2) {
  transform: translateX(14px);
}
.live-item1:nth-child(3) {
  transform: translateX(28px);
}

.live-item1 {
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  font-size: 13px;
  margin-right: 20px;
}

.avatar1 img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}


.live-text1 strong {
  font-weight: 600;
  color: #111;
}


.status1 {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.status1.success {
  background: #e7f9ef;
  color: #22c55e;
}

.status1.pending {
  background: #fff3cd;
  color: #f59e0b;
}



.payment-item1 {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: 15px;
  color: #333;
}

.payment-icon1 {
  min-width: 22px;
  height: 22px;
  background: #e9ecff;
  color: #5b6cff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;

}


.info-card1 p {
  margin-bottom: 12px;
  color: #444;
  font-size: 15px;
}

.info-card1 p strong {
  color: #111;
}


.card-link1 {
  display: inline-block;
  margin-top: 18px;
  color: #5b6cff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-left: 34px;
  
}

.card-link1::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #5b6cff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


@media (max-width: 900px) {
  .info-section1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card1 {
    width: 100%;
    max-width: 500px;
  }

  .live-payments1 {
    position: static;
    margin-bottom: 20px;
  }
}


.consult-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.consult-modal.active {
  display: block;
}

.consult-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.consult-box {
  position: relative;
  background: #6a72f8;
  width: 400px;
  max-width: calc(100% - 40px);
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 26px;
  padding: 28px;
  color: #fff;
  height: 350px;
}

.consult-box h2 {
  font-size: 24px;
  
}

.consult-box p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.consult-box label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.consult-box input,
.consult-box textarea {
  width: 80%;
  border: none;
  border-radius: 999px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 14px;
  outline: none;
}

.consult-box textarea {
  border-radius: 18px;
  resize: none;
  height: 80px;
}

.consult-box button[type="button"] {
  width: 90%;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 70px;
}

.consult-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.consult-box input,
.consult-box textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #111;
}


.consult-box input::placeholder,
.consult-box textarea::placeholder {
  font-weight: 400;
  color: rgba(0,0,0,0.4);
}


.consult-box input:focus,
.consult-box textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 100, 255, 0.25);
}
.reviews3{
  padding:80px 20px;
  font-family:Inter,Arial,sans-serif;
}

.reviews3 h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:60px;
  color:#111;
}

.reviews3 h2 span{color:#6c72f8}

.slider3{max-width:1200px;margin:auto}
.reviews3{
  max-width:2200px;
  margin:0 auto;
  padding:0 20px;
  overflow:hidden; 
}

.reviews3 h2{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  max-width:100%;
}
.slider3{
  max-width:100%;
}
.slider-track3{
  display:flex;
  gap:30px;
  transition:.5s ease;
  justify-content:flex-start; /* ← додай */
}

.review-card3{
  min-width:48%;
  height:200px;
  border-radius:26px;
  padding:35px 40px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);


  position:relative;
}

.quote3{
  position:absolute;


  font-size:90px;
  color:#e4e6ff;
  font-weight:800;
}

.header3{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.avatar3{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
}

.name3{
  font-size:23px;
  font-weight:700;
}

.name3 span{color:#6c72f8}

.role3{
  font-size:13px;
  color:#777;
  margin-top:3px;
}

.text3{
  font-size:17px;
  line-height:1.65;
  color:#444;
  
}



.controls3{
  display:flex;
  justify-content: flex-start;   
  gap:25px;
  margin-top:40px;
}



.arrow3{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:#f1f2ff;
  color:#6c72f8;
  font-size:22px;
  cursor:pointer;
  transition:.25s;
  margin-top: 40px;
}

.arrow3:hover{
  background:#6c72f8;
  color:#fff;
}

.dots3{
  display:flex;
  gap:10px;
}

.dot3{
  width:10px;
  height:10px;
  background:#ddd;
  border-radius:50%;
}

.active3{
  background:#6c72f8;
}



@media(max-width:900px){
  .review-card3{min-width:100%}
}
.site-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.logo-placeholder {
  width: 90px;
  height: 35px;
  border: 1px dashed #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #777;
}

.footer-stats {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #333;
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icons .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.2s;
}

.footer-icons .icon:hover {
  background: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 12px 20px;
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}


.projects-subj {
  color: #8b8b8b;
  font-size: 14px;
  margin-left: 40px;
}

.projects-titlej {
  margin-left: 40px;
  font-size: 40px;
  font-weight: 700;
  
}
.projects-titlej span{
  color: #6c63ff;
}

.projects-wrapj {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cardj {
  position: relative;
  width: 450px;
  height: 185px;
  border-radius: 4px;
  padding: 40px;
  overflow: hidden;
}

.beigej {
  background: #f3e6d7;
}

.bluej {
  background: #d7e0f8;
}

.card-textj h3 {
font-family: 'TT Firs Neue', sans-serif;
font-weight: 300;      
font-style: normal;
font-size: 27px;
line-height: 31px;
letter-spacing: 0;

  margin-top: 0;
  margin-left: -20px;  
  
}

.btnj {
  background-color: rgba(237, 219, 199, 1) ;
  border: none;
  box-shadow: none;
  
  border-radius: 4px;
  font-size: 15px;
  margin-top: 55px;

}
.whitej{
  background-color: rgba(180, 193, 240, 1);

}

.badjej {
  position: absolute;
  left: 15px;
  top: 55%;

  background-color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;

 
}

.phonej {
  position: absolute;
  right: 30px;
  bottom: 0;
  height: 90%;
}


.projects-navj {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
  margin-left: 17px;
}




.card-wrapj {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px; 
}


.projects-viewj {
  width: auto;
  overflow: hidden;
  margin-left: 20px;
}

.cards-trackj {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.card-wrapj {
  min-width: 450px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .projects-viewj {
  display: none;
  }
  .projects-subj,
  .projects-titlej {
    display: none;
  }
  .projects-navj{
    display: none;
  }


}

html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

.card1 {
  max-width: 100%;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .card1 {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cards-container {
    gap: 24px !important;
  }

  .calc,
  .calc-container,
  .reviews3,
  .slider3 {
    width: 100% !important;
    overflow-x: hidden !important;
  }


}

@media (max-width:768px){

  .process-right{
    width:100%;
    max-width:400px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .step{
    width:100%;
    margin-bottom:28px;
  }

  .step span{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#8e8e8e;
    margin-bottom:6px;
  }

  .step h3{
    font-size:18px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:8px;
  }

  .step h3 a{
    color:#6c72f8;   
    text-decoration:none;
  }

  .step p{
    font-size:14px;
    line-height:1.5;
    color:#6f6f6f;
    max-width:330px;
    margin:0 auto;
  }

}
@media (max-width:768px){

  .process-left{
    margin-right: 23px;
  }

  .step{
    display:block;          
    text-align:center;
  }

.step span {
    display: block;       
    width: 100%;
    margin: 0 auto 10px auto; 
    font-size: 18px;
    font-weight: 700;
    position: relative;
    top: -25px;         
}

.step {
    display: block;        
    text-align: left;      
    width: 100%;          
    margin: 0;            
    padding-left: 0 !important;
    margin-right: 55px;
}



  .step h3,
  .step p{
    margin-left:0 !important;
    padding-left:0 !important;
  }

}


@media (max-width: 1024px) {

  .process {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }



  .process-left {
    text-align: center;
  }

  .process-left h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
    margin-right: 21px;
  }

  .process-left h2 span {
    color: #6c72f7;
    font-weight: 700;
  }

  .process-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 22px;
  }

  .process-left .btn {
    display: inline-block;
    background: #6c72f7;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    margin-right: 18px;
  }

  .process-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .process-right .step {
    position: relative;
    padding-left: 52px;
  }

  .process-right .step span {
    position: absolute;
    left: 0;
    margin-top: 10px;
 
    font-size: 18px;
    font-weight: 700;
    color: #111;
    opacity: 0.6;
  }

  .process-right h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
  
    color: #111;
  }

  .process-right h3 a {
    color: #6c72f7;
    text-decoration: none;
    font-weight: 700;
  }

  .process-right p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
  }
}


@media (max-width:1024px){

  .reviews3 h2{
    font-size:34px;
    margin-bottom:40px;
  }

  .review-card3{
    min-width:70%;
    height:auto;          
  }

  .text3{
    font-size:16px;
  }

}


@media (max-width:768px){

  .reviews3{
    padding:60px 15px;
    margin-right: 35px;
  }

  .reviews3 h2{
    font-size:26px;
    margin-bottom:30px;
  }

  .slider-track3{
    justify-content: center;  
  }

  .review-card3{

    height:auto;
    padding:25px 20px;
    border-radius:22px;
  }
 

  .slider-window3{
    overflow:hidden; 
  }



  .review-card3{
    min-width:100%;
    max-width:100%;
    flex:0 0 100%;
    margin:0;
  }




  .header3{
    flex-direction:column;
    text-align:center;
  }

  .name3{
    font-size:20px;
  }

  .text3{
    font-size:15px;
    text-align:center;
  }

  .controls3{
    justify-content:center;  
    margin-top:25px;
  }

}




@media (max-width:480px){

  .reviews3 h2{
    font-size:28px;
    align-items: center;
  }

  .review-card3{
    padding:22px 16px;
  }

  .avatar3{
    width:54px;
    height:54px;
  }

  .name3{
    font-size:18px;
  }

  .text3{
    font-size:14px;
    line-height:1.6;
  }

  .arrow3{
    width:38px;
    height:38px;
    font-size:18px;
  }


  
  .next-btn1{
    display: block;
    margin: 80px auto 0;
  }

}
/* Планшети і телефони */
@media (max-width: 1024px) {
  .faq {
    padding: 40px 15px;
    
  }

  .faq h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .faq-item {
    padding: 15px 0;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.4;
  }

  .arrow {
    font-size: 16px;
  }
}

/* Телефони */
@media (max-width: 480px) {
  .faq {
    padding: 30px 10px;
  
  }

  .faq h2 {
    font-size: 25px;
  }

  .faq-item {
    padding: 12px 0;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .arrow {
    font-size: 19px;
  }
}
/* Планшети і телефони */
@media (max-width: 1024px) {
  .faq-item {
    border-bottom: 0.5px solid #ddd; /* тонша лінія */
    padding: 12px 0;
  }

  .arrow {
    font-size: 19px; /* менший крючок */
  }
}

/* Телефони */
@media (max-width: 480px) {
  .faq-item {
    border-bottom: 0.5px solid #ddd;
    padding: 10px 0;
  }


}
.nav-bg {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #8a2be2; /* Твій фіолетовий */
    transition: transform 0.3s ease, width 0.3s ease, opacity 0.2s ease;
    border-radius: 2px;
    opacity: 0; /* Спочатку ховаємо */
    pointer-events: none;
}

/* Коли лінія має ширину, ми її показуємо */
.nav-bg.visible {
    opacity: 1;
}
/* 3-тя картка: Нерухомість */
.card-wrapj:nth-child(3) .cardj {
    background-color: rgba(248, 92, 93, 1) !important;
}
.card-wrapj:nth-child(3) .btnj {
    background-color: rgba(248, 92, 93, 1) !important;
    color: white;
}

/* 4-та картка: Дизайн інтер'єру */
.card-wrapj:nth-child(4) .cardj {
    background-color: rgba(87, 192, 244, 1) !important;
}
.card-wrapj:nth-child(4) .btnj {
    background-color: rgba(87, 192, 244, 1) !important;
    color: white;
}

/* 5-та картка: NFT */
.card-wrapj:nth-child(5) .cardj {
    background-color: rgba(248, 156, 160, 1) !important;
}
.card-wrapj:nth-child(5) .btnj {
    background-color: rgba(248, 156, 160, 1) !important;
    color: white;
}

/* 6-та картка: Бронювання турів */
.card-wrapj:nth-child(6) .cardj {
    background-color: rgba(157, 122, 228, 1) !important;
}
.card-wrapj:nth-child(6) .btnj {
    background-color: rgba(157, 122, 228, 1) !important;
    color: white;
}
.parent-container {
    position: relative; /* Батько каже: "Я головний для координат" */
}

.social-float {
    position: absolute; /* Гачок каже: "Слухаюсь, стою в кутку батька" */
    bottom: 10px;
    right: 10px;
}
.social-float {
 
    position: absolute !important; 
    
    /* Позиція всередині хедера */
    right: 20px; 
    top: 52%; 
    transform: translateY(-50%); 
    
 
    left: auto;
    bottom: auto;
}
header, .header { /* вибери свій клас хедера */
    position: relative !important;
    overflow: visible; 
}
/* Ефект при наведенні мишкою для всіх кнопок "Детальніше" */
.card-wrapj a .btnj:hover,
.card-wrapj a .btnj.whitej:hover {
    background-color: rgba(102, 107, 252, 1) !important; /* Твій колір */
    color: #ffffff !important; /* Білий колір тексту */
    cursor: pointer; /* Змінює курсор на "палець" */
    transition: background-color 0.3s ease; /* Плавний перехід кольору */
}
/* Вікно слайдера */
.slider-window3 {
    width: 100%;
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Приховати скролбар всюди */
}

.slider-window3::-webkit-scrollbar {
    display: none;
}

/* Трек */
.slider-track3 {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: max-content;
    cursor: grab; /* Рука для ПК */
}

.slider-track3:active {
    cursor: grabbing;
}

/* Картка з адаптивною шириною */
.review-card3 {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    /* На телефонах картка займає 85% ширини, на ПК — 400px */
    width: 85vw; 
    max-width: 400px; 
    min-width: 280px; 
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    user-select: none; /* Щоб текст не виділявся при гортанні мишкою */
}


/* Фікс тексту: щоб він не вилазив і його було видно */
.text3 {
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word; /* Перенос довгих слів */
    overflow: hidden;
    color: #444;
}


@media (max-width: 768px) {
    /* Вікно слайдера: додаємо відступ для центрування */
    .slider-window3 {
        scroll-padding: 0 10vw !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
    }
    .review-card3 {
    /* Прибираємо тінь */
    box-shadow: none !important;
    
    /* Прибираємо обводку (рамку) */
    border: none !important;
    
    /* Якщо була якась фонова обводка через outline */
    outline: none !important;
}

    /* Трек: прибираємо фіксовані відступи, якщо вони були */
    .slider-track3 {
        padding: 20px 0 !important;
        gap: 15px !important;
        display: flex !important;
    }

    /* Картка: робимо її видимою і по центру */
    .review-card3 {
        width: 83vw !important; /* Картка займає 80% екрана */
        min-width: 280px !important;
        max-width: 85vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important; /* Магніт по центру */
        margin: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    /* Текст: щоб точно не вилазив */
    .text3 {
        font-size: 14px !important;
        line-height: 1.5 !important;
        white-space: normal !important; /* Щоб текст переносився */
        word-wrap: break-word !important;
    }

    /* Ховаємо скролбар на мобілці */
    .slider-window3::-webkit-scrollbar {
        display: none !important;
    }
}


/* 2. Адаптація під планшети та телефони */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column !important; /* Стекаємо елементи один під одного */
        align-items: flex-start !important; /* Все липне до лівого краю */
        padding-left: 20px !important; /* Додаємо невеликий відступ від краю екрана */
        gap: 20px !important;
    }

    .footer-stats {
        flex-direction: row !important; /* Статистика залишається в рядок */
        gap: 20px !important;
        flex-wrap: wrap !important; /* Якщо не влазить - перенесеться */
    }
}

/* 3. Адаптація під мобільні (найменші екрани) */
@media (max-width: 600px) {
    .footer-container {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .footer-stats {
        display: grid !important; /* Робимо сітку для статистики */
        grid-template-columns: 1fr 1fr !important; /* Два стовпці */
        width: 100% !important;
    }

    .footer-bottom {
        flex-direction: column !important; /* Копірайт та контакти в стовпчик */
        align-items: flex-start !important;
        padding-left: 20px !important;
    }

    /* Фікс для карток відгуків, щоб не ламались */
    .review-card3 {
        width: 85vw !important;
        min-width: 85vw !important;
        margin-right: 15px !important;
    }
    /* ТІЛЬКИ ЦЕНТРУВАННЯ ЛОГОТИПА */
.footer-logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important; /* Відступ від тексту знизу */
}

.footer-logo img, 
.logo-placeholder {
    margin: 0 auto !important;
}

.footer-container {
    flex-direction: column !important;
    align-items: center !important;
}
}


@media screen and (max-width: 1024px) {
  .social-float{
    display: none;
  }

.cont2 {
    display: flex;
    flex-direction: column; /* Ставимо елементи один під одним */
    align-items: center;    /* Центруємо по горизонталі */
    justify-content: center; /* Центруємо по вертикалі (якщо треба) */
    text-align: center;     /* Центруємо текст всередині блоків */
    width: 100%;            /* Контейнер має займати всю ширину */
    padding: 40px 20px;     /* Додаємо внутрішні відступи, щоб не липло до країв */
}

/* Додатково вирівнюємо заголовки та список */
.Htext2, .Htext3 {
    width: 100%;
    margin-bottom: 20px;
}

.Htext3 h4 {
    margin: 10px 0;        
}


.button2 {
    display: flex;
    justify-content: center;
    width: 100%;
}


  
}
.mobile-menu {
    position: fixed !important;
    top: 0;
    right: -300px; /* Початкове положення (сховане) */
    width: 280px;
    
    /* --- ЗМІНА ВИСОТИ ТУТ --- */
    height: auto !important;       /* Висота підлаштовується під кількість посилань */
    max-height: 400px;             /* Обмежуємо максимальну висоту, щоб не було на весь екран */
    border-bottom-left-radius: 20px; /* Додаємо закруглення знизу для гарного вигляду */
    /* ------------------------ */

    background: white;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.1);
    display: flex !important;
    flex-direction: column;
    padding: 60px 20px 30px 20px; /* Збільшений відступ зверху через бургер */
    z-index: 1001;
    transition: right 0.3s ease;
}
.mobile-menu {
    right: -320px;           
    visibility: hidden;     
    pointer-events: none;    
    transition: right 0.3s ease, visibility 0.3s;
}

.mobile-menu.show {
    right: 0;
    visibility: visible;     
    pointer-events: auto;    
}

.mobile-menu.show {
    right: 0 !important;
}

.overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
  
    z-index: 1001;
}

@media (max-width: 1024px) {
  .faq{
    width: 100%;
  }
}


@media (max-width: 768px) {
  .faq{
    width: 100%;
  }

}

@media (max-width: 480px) {
  .faq{
    width: 100%;
  }

}
/* Адаптація суто для планшетів (iPad, Android Tablets) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    

    .hero-box {
        gap: 40px; /* збільшуємо відстань між картками, якщо треба */
    }


    /* Збільшуємо головне фото (чела) */
    .hero-person img {
        width: 110%; /* Або вкажіть конкретне значення, наприклад 500px */
        max-width: none; /* Знімаємо обмеження, якщо воно було */
        transform: scale(1.15); /* Альтернативний варіант збільшення */
        display: block;
        margin: 0 auto;
    }
    .info-card {
       display: none;
    }
    .hero::before , .hero::after {
        transform: scale(1.4); /* Збільшуємо у 1.4 рази. Можна міняти на 1.5, 1.8 тощо */
        transform-origin: center; /* Щоб ріс з центру */
    }

    .cont2 button{
      width: 150px;
      height: 100px;
    }

    .cont2 button{
      font-size: 20px;
    }
    

    

}
/* Адаптація ТІЛЬКИ для планшетів (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
    .benefits-visual {
        display: flex;
        justify-content: center; /* Центрує по горизонталі */
        align-items: center;     /* Центрує по вертикалі */
                /* Вирівнює блок по центру екрана */
        width: 100%;
        position: relative;
        left: 0;                 /* Скидаємо можливі зсуви */
    }

    /* Сама дівчина */
    .girl {
        position: relative;
        z-index: 2;
        margin: 0 auto;
        display: block;
        left: 0; 
    }

    /* Круг за дівчиною */
    .circle {
        position: absolute;
       
        top: 37%;
        transform: translate(-50%, -50%); /* Ідеальний центр щодо дівчини */
        z-index: 1;
    }


}
@media (min-width: 768px) and (max-width: 1024px) {
  #prices.cards-container {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    width: 100% !important;
    padding: 20px !important;
  }

  .card1 {
    /* Робимо картку вужчою, щоб влізло рівно дві */
    flex: 0 0 calc(48% - 10px) !important;
    width: calc(48% - 10px) !important;
    max-width: 48% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .process-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  .step {
    width: 100% !important;
    max-width: 600px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .step span {
    display: block !important;
    margin: 0 auto 10px auto !important;
  }

  .step h3, .step p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 810px) and (max-width: 1366px) {
  /* Головний контейнер секції (якщо він є) */
  .process {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Блок із заголовком та кнопкою */
  .process-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto 50px auto !important; /* Відступ знизу до кроків */
    float: none !important; /* Прибираємо притискання вліво */
  }

  .process-left h2 {
    margin-bottom: 20px !important;
    font-size: 36px !important; /* Можна підправити розмір під планшет */
  }

  .process-left p {
    margin: 0 auto 25px auto !important;
    max-width: 500px !important; /* Щоб текст не розтягувався занадто широко */
  }

  .process-left .btn {
    display: inline-block !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
}
@media (min-width: 810px) and (max-width: 1366px) {
  .process-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    
    /* Обнуляємо все, що може штовхати вправо */
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    
    width: 100% !important;
    max-width: 600px !important;
    position: static !important;
  }

  .step h3, 
  .step p {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .step span {
    position: static !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
    left: auto !important;
    transform: none !important;
  }
}

@media (min-width: 810px) and (max-width: 1366px) {
  /* 1. Головний контейнер: робимо текст зліва, візуал справа */
  .benefits-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    padding: 40px 20px !important;
  }

  /* Текст займає 50% */
  .benefits-text {
    flex: 1 !important;
    text-align: left !important;
  }

  /* Візуал займає 50% і центрується */
  .benefits-visual {
    flex: 1 !important;
    position: relative !important;
    height: 450px !important; /* Фіксуємо висоту, щоб дівчина не випадала */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Дівчина тепер прив'язана до центру блоку */
  .girl {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 80% !important; /* Трохи зменшуємо, щоб влізли плашки */
    z-index: 2 !important;
  }

  /* Координати для плашок, щоб вони не злітали */
  .stat {
    position: absolute !important;
    top: 10% !important;
    left: 0 !important;
    z-index: 3 !important;
  }

  .chat {
    position: absolute !important;
    bottom: 5% !important;
    right: -10px !important;
    z-index: 3 !important;
  }

  .circle {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 300px !important;
    height: 300px !important;
    z-index: 1 !important;
  }

  /* Картки знизу: ставимо по 2 в ряд */
  .info-section1 {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
  }

  .info-card1 {
    flex: 1 !important;
    max-width: 50% !important;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .info-card1 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    height: auto !important;
    gap: 15px !important; /* Робить однакові відступи між заголовком, текстом і плашками */
  }

  /* Примусово ставимо заголовок першим */
  .info-card1 h3 {
    order: -1 !important; 
    width: 100% !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  /* Блок з інструментами (текст) */
  .info-card1 p {
    order: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  /* Блок з оплатою (список 50/50) */
  .payment-item1 {
    order: 1 !important;
    width: 100% !important;
  }

  /* Плашки (Андрій, Олександр) */
  .live-payments1 {
    order: 2 !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin: 15px 0 !important;
    width: 100% !important;
  }

  /* Кнопки/Посилання завжди в самому низу */
  .card-link1 {
    order: 3 !important;
    margin-top: auto !important;
  }
}


@media (min-width: 810px) and (max-width: 830px) {
  /* Приховуємо лише посилання, але залишаємо сам хедер */
  header nav, 
  .desktop-menu, 
  .header-links {
    display: none !important;
  }

  /* Забезпечуємо видимість хедера */
  header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 20px !important;
    background: #fff !important; /* Додай фон, якщо він зник */
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Налаштування кнопки бургера */
  .burger {
    display: block !important;
    font-size: 35px !important;
    color: #000 !important; /* Чорний колір, щоб точно було видно */
    cursor: pointer !important;
    z-index: 1002 !important;
    line-height: 1 !important;
  }

  /* Мобільне меню */
  .mobile-menu {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; 
    width: 280px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 2000 !important;
    transition: right 0.4s ease !important;
    padding: 80px 20px 20px 20px !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
  }

  /* Клас для відкриття */
  .mobile-menu.active {
    right: 0 !important;
  }

  /* Оверлей */
  .overlay.active {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 1999 !important;
  }

  .mobile-menu a {
    display: block !important;
    padding: 15px 0 !important;
    color: #333 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eee !important;
  }
  .cont1 button{
    display: none;
  }
}
@media (min-width: 810px) and (max-width: 830px) {
  /* Головний контейнер меню */
  .mobile-menu {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; 
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important; /* Білий фон */
    z-index: 9999 !important; /* Найвищий пріоритет */
    transition: right 0.4s ease !important;
    padding: 100px 30px !important; /* Відступ зверху, щоб текст не був під бурегром */
    box-shadow: -10px 0 30px rgba(0,0,0,0.2) !important;
    box-sizing: border-box !important;
  }

  .mobile-menu.active {
    right: 0 !important;
  }

  /* Стилі для посилань всередині - ФАРБУЄМО ТЕКСТ */
  .mobile-menu a {
    display: block !important;
    color: #1a1a1a !important; /* Темно-сірий/чорний колір тексту */
    font-size: 25px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding-bottom: 10px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Оверлей (затемнення фону) */
  .overlay.active {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.6) !important;
    z-index: 9998 !important;
  }
}

@media (min-width: 910px) and (max-width: 915px) {
  /* 1. Ховаємо посилання в основній навігації */
  .nav-header .nav ul, 
  .nav-header .nav-bg {
    display: none !important;
  }

  /* 2. Ховаємо кнопку замовлення та "крючок" (соціальні мережі) */
  .button1, 
  .social-float {
    display: none !important;
  }

  /* 3. Переконуємось, що бургер активний і видимий */
  .burger {
    display: block !important;
    position: fixed; /* Або absolute, залежно від дизайну */
    top: 25px;
    right: 30px;
    font-size: 35px !important;
    color: rgba(102, 107, 252, 1) !important;
    z-index: 9999 !important;
    cursor: pointer;
    
  }

  /* 4. Налаштування випадаючого меню, щоб текст був чорним і видимим */
  .mobile-menu {
    display: flex !important;
    width: 300px !important; /* Як ми раніше налаштували */
    background-color: #ffffff !important;
    padding-top: 100px !important;
  }

  .mobile-menu a {
    color: #000000 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }

  /* 5. Оверлей під меню */
  .overlay.active {
    display: block !important;
    z-index: 9998 !important;
  }

  .cont1 button{
    display: none;
  }
}
@media (max-width: 480px){

  .info-card.left{
    margin-left: 50px;
  }
  .info-card.right{
    margin-left: 20px;
  }
}
.cont1 {
    display: flex !important;
    align-items: center !important; /* Це вирівняє кнопку і крючок по одній горизонтальній лінії */
 
}
/* Приховуємо кнопку на всіх пристроях, ширина екрана яких менша за 768px */
@media (max-width: 767px) {
    .cont1 .button {
        display: none !important;
    }
}
/* Приховуємо бургер і оверлей на комп'ютерах */
.burger, .overlay {
    display: none;
}

/* Адаптація СУВОРО для 853px і менше */
@media screen and (max-width: 855px) {
    
    /* 1. Ховаємо назви сторінок (весь хедер навігації) */
    .nav-header {
        display: none !important;
    }

    /* 2. Ховаємо кнопку "Замовити дзвінок" */
    .cont1 .button {
        display: none !important;
    }


    /* 4. Ховаємо декоративну лінію */
    

    /* 5. ПОКАЗУЄМО БУРГЕР */
   .burger {
        display: block !important;
        position: absolute !important;
        top: 25px !important;
        right: 20px !important;
        font-size: 45px !important; /* Збільшили розмір значка */
        cursor: pointer !important;
        z-index: 2000 !important;
        color: rgba(102, 107, 252, 1) !important; /* Твій колір */
        line-height: 1 !important;
    }

    /* 3. Оновлене мобільне меню (зробили більше) */
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        background: #ffffff !important; /* Білий фон, щоб текст було видно */
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 40px !important; /* Більше відступів всередині */
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2) !important;
    }

    .mobile-menu.active {
        right: 0 !important;
    }

    /* 4. ВИПРАВЛЕННЯ ТЕКСТУ (щоб він з'явився) */
    .mobile-menu a {
        display: block !important;
        text-decoration: none !important;
        color: #1a1a1a !important; /* Темний колір тексту */
        font-size: 22px !important; /* Більший шрифт */
        font-weight: 600 !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(102, 107, 252, 0.2) !important; /* Тонка синя лінія під пунктами */
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ефект при натисканні на посилання */
    .mobile-menu a:active {
        color: rgba(102, 107, 252, 1) !important;
    }

    /* 5. Overlay (затемнення фону) */
    .overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 2050 !important;
        backdrop-filter: blur(4px) !important; /* Легке розмиття фону */
    }
}