     /* Стилі перемикача мов */
     .lang-switcher {
         display: flex;
         align-items: center;
         margin-left: 20px;
         font-weight: 600;
         font-size: 14px;
         color: #2c3e50;
     }

     .lang-btn {
         cursor: pointer;
         opacity: 0.5;
         transition: 0.3s;
         padding: 5px;
     }

     .lang-btn.active {
         opacity: 1;
         color: #1a5f36;
         font-weight: 700;
     }

     .lang-btn:hover {
         opacity: 1;
     }

     .divider {
         margin: 0 2px;
         opacity: 0.3;
     }

     /* Адаптація перемикача в мобільному меню */
     .mobile-menu .lang-switcher {
         margin: 20px auto;
         justify-content: center;
         font-size: 18px;
     }

     /* Стилі Лоадера, Попапа та Валідації (з попередніх кроків) */
     .overlay-backdrop {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.6);
         backdrop-filter: blur(8px);
         display: none;
         justify-content: center;
         align-items: center;
         z-index: 10000;
         padding: 20px;
         box-sizing: border-box;
     }

     .loader-container {
         text-align: center;
         color: white;
         background: rgba(26, 95, 54, 0.9);
         padding: 40px;
         border-radius: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
         max-width: 300px;
         width: 100%;
     }

     .hourglass {
         display: inline-block;
         position: relative;
         width: 64px;
         height: 64px;
         margin-bottom: 20px;
     }

     .hourglass:after {
         content: " ";
         display: block;
         border-radius: 50%;
         width: 0;
         height: 0;
         margin: 6px;
         box-sizing: border-box;
         border: 26px solid #fff;
         border-color: #fff transparent #fff transparent;
         animation: hourglass 1.2s infinite;
     }

     @keyframes hourglass {
         0% {
             transform: rotate(0);
         }

         50% {
             transform: rotate(900deg);
         }

         100% {
             transform: rotate(1800deg);
         }
     }

     .loader-text {
         font-size: 18px;
         font-weight: 600;
         margin-bottom: 5px;
     }

     .loader-subtext {
         font-size: 13px;
         opacity: 0.8;
     }

     .popup-card {
         background: #ffffff;
         width: 100%;
         max-width: 450px;
         border-radius: 16px;
         box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
         position: relative;
         overflow: hidden;
         animation: slideUp 0.4s ease-out;
     }

     @keyframes slideUp {
         from {
             opacity: 0;
             transform: translateY(20px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     .popup-close {
         position: absolute;
         top: 15px;
         right: 20px;
         font-size: 28px;
         line-height: 1;
         color: #aaa;
         cursor: pointer;
         z-index: 2;
     }

     .popup-header {
         text-align: center;
         padding: 30px 30px 10px 30px;
     }

     .popup-icon {
         font-size: 40px;
         margin-bottom: 10px;
     }

     .popup-header h3 {
         margin: 0 0 10px 0;
         color: #2c3e50;
         font-size: 22px;
         font-weight: 700;
     }

     .popup-header p {
         margin: 0;
         color: #7f8c8d;
         font-size: 14px;
         line-height: 1.5;
     }

     #lead-form {
         padding: 20px 30px 30px 30px;
     }

     .form-group {
         margin-bottom: 20px;
     }

     .form-group label {
         display: block;
         font-size: 13px;
         font-weight: 600;
         color: #2c3e50;
         margin-bottom: 8px;
         margin-left: 2px;
     }

     .form-group input[type="text"],
     .form-group input[type="tel"] {
         width: 100%;
         padding: 14px 16px;
         font-size: 16px;
         border: 2px solid #eef2f5;
         background: #f8fafc;
         border-radius: 12px;
         transition: all 0.3s;
         box-sizing: border-box;
         outline: none;
     }

     .form-group input:focus {
         border-color: #1a5f36;
         background: #fff;
         box-shadow: 0 0 0 4px rgba(26, 95, 54, 0.1);
     }

     .messenger-grid {
         display: flex;
         gap: 10px;
     }

     .ms-option {
         flex: 1;
         cursor: pointer;
     }

     .ms-option input {
         display: none;
     }

     .ms-box {
         border: 2px solid #eef2f5;
         border-radius: 12px;
         padding: 12px 5px;
         text-align: center;
         font-weight: 600;
         font-size: 14px;
         color: #7f8c8d;
         transition: 0.2s;
         background: #fff;
     }

     .ms-option input:checked+.ms-box {
         border-color: #1a5f36;
         color: #1a5f36;
         background: #eafaf1;
     }

     .popup-submit-btn {
         width: 100%;
         background: #1a5f36;
         color: white;
         border: none;
         padding: 16px;
         border-radius: 12px;
         cursor: pointer;
         transition: 0.3s;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         margin-top: 10px;
     }

     .popup-submit-btn:hover {
         background: #144a2a;
     }

     .popup-submit-btn:disabled {
         opacity: 0.7;
         cursor: not-allowed;
     }

     @media (max-width: 480px) {
         .popup-card {
             border-radius: 20px 20px 0 0;
             position: absolute;
             max-width: 100%;
         }
     }

     /* Успіх та валідація */
     #success-step {
         padding: 40px 30px;
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         min-height: 300px;
     }

     #success-step h3 {
         font-size: 24px;
         color: #1a5f36;
         margin: 20px 0 10px 0;
     }

     .checkmark-circle {
         width: 80px;
         height: 80px;
         position: relative;
         display: inline-block;
         vertical-align: top;
         border-radius: 50%;
         border: 2px solid #1a5f36;
         animation: scaleIn 0.3s forwards;
     }

     .checkmark.draw:after {
         content: '';
         animation: checkheight 0.2s ease-in forwards;
         width: 0;
         height: 0;
         border-bottom: 3px solid #1a5f36;
         border-right: 3px solid #1a5f36;
         position: absolute;
         top: 40px;
         left: 22px;
         transform: scaleX(-1) rotate(135deg);
         transform-origin: left top;
         animation-delay: 0.4s;
     }

     @keyframes checkheight {
         0% {
             height: 0;
             width: 0;
         }

         100% {
             height: 25px;
             width: 14px;
         }
     }

     @keyframes scaleIn {
         from {
             transform: scale(0);
             opacity: 0;
         }

         to {
             transform: scale(1);
             opacity: 1;
         }
     }

     .iti {
         width: 100%;
     }

     .iti__flag-container {
         border-top-left-radius: 12px;
         border-bottom-left-radius: 12px;
     }

     .iti__country-list {
         z-index: 10001;
     }

     input.is-invalid {
         border-color: #ff4d4d !important;
         background-color: #fff5f5 !important;
         animation: shake 0.3s ease-in-out;
     }

     .error-feedback {
         color: #ff4d4d;
         font-size: 12px;
         margin-top: 6px;
         font-weight: 500;
         text-align: left;
         display: none;
         padding-left: 4px;
     }

     @keyframes shake {

         0%,
         100% {
             transform: translateX(0);
         }

         25% {
             transform: translateX(-5px);
         }

         75% {
             transform: translateX(5px);
         }
     }

     .iti.is-invalid input {
         border-color: #ff4d4d !important;
     }

     /* --- СТИЛІ ШАПКИ (DESKTOP) --- */
     .header .right {
         display: flex;
         align-items: center;
         gap: 20px;
         /* Відступ між перемикачем і кнопкою */
     }

     /* Перемикач мов у шапці (Desktop) */
     .header .right .lang-switcher {
         margin: 0;
         /* Скидаємо старі відступи */
         margin-right: 10px;
     }

     /* Бургер меню за замовчуванням ховаємо на великих екранах (якщо у тебе це ще не прописано) */
     .mobile {
         display: none;
     }


     /* --- МОБІЛЬНА АДАПТАЦІЯ (max-width підлаштуй під свій брейкпоінт, зазвичай 768px або 991px) --- */
     @media (max-width: 991px) {

         /* 1. ПОВНІСТЮ ХОВАЄМО блок .right на мобільному */
         /* Це приховає і кнопку "Розрахувати", і перемикач мов */
         .header .right {
             display: none !important;
         }

         /* 2. Показуємо бургер */
         .mobile {
             display: block;
             margin-left: auto;
             /* Це змусить бургер притиснутись до правого краю */
             cursor: pointer;
         }

         /* Додатково: переконайся, що в мобільному меню (.mobile-menu) перемикач гарний */
         .mobile-menu .lang-switcher {
             display: flex;
             justify-content: center;
             margin: 20px auto;
         }
     }