.isgva-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.isgva-popup form{
    display: block;
}
.isgva-popup form,
.isgva-popup p {
    background: #fff;
    padding: 24px;
    width: 100%;
    max-width: 420px;
}

.isgva-popup label {
    display: block;
    margin-bottom: 12px;
}

.req {
    color: red;
}
#isgva-form section {
  margin-bottom: 22px;
}

#isgva-form section:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
}
#isgva-phone {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 16px 16px 45px;
  border-radius: 14px;
}

#isgva-form section:first-child label {
  font-size: 14px;
  font-weight: 600;
}
/* контейнер */
.isgva-form .form__social-networks {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.isgva-form .form__social-networks>div{
    flex: auto !important;
}
/* label = клікабельна пігулка */
.isgva-form .form__social-networks label {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1.5px solid #e5e7eb;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    background: #fff;
}

/* ховаємо чекбокс */
.isgva-form .form__social-networks input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* hover */
.isgva-form .form__social-networks label:hover {
    border-color: #facc15;
}

/* checked */
.isgva-form .form__social-networks input[type="checkbox"]:checked + span,
.isgva-form .form__social-networks input[type="checkbox"]:checked {
    /* fallback */
}

/* checked через :has (сучасні браузери) */
.isgva-form .form__social-networks label:has(input:checked) {
    border-color: #facc15;
    background: #fffbea;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.25);
}
 .isgva-form .form__file-wr {
  border: 2px dashed #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}

.isgva-form.form__file-wr:hover {
  border-color: #facc15;
  background: #fffbea;
}

.isgva-form .form__file-wr h6 {
  font-size: 15px;
  margin-bottom: 4px;
}

.isgva-form .form__file-wr p {
  font-size: 12px;
  color: #6b7280;
}
.isgva-form  .form__file-wr.is-active {
    border-color: #facc15;
    background: #fffbea;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, .25);
}

.isgva-form  .form__file-wr.is-active::after {
    content: '✔ Файл додано';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
    background: #fde68a;
    padding: 4px 8px;
    border-radius: 999px;
}
.send-form {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  background: #facc15;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.send-form:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(250,204,21,.4);
}
.acept-information> .d-flex{
    display: flex;
    align-items: baseline;
}
.acept-information p{
    padding: 10px;
}
#isgva-form {
  position: relative;
      border-radius: 16px;
}

.isgva-form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #374151;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s ease;
}

.isgva-form-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}
/* overlay */
.isgva-popup-2 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;

    background: rgba(0, 0, 0, 0.55);

    align-items: center;
    justify-content: center;

    padding: 16px;
}

/* popup box */
.isgva-popup__content {
    position: relative;
    width: 100%;
    max-width: 420px;

    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    text-align: center;
}

/* title */
.isgva-popup__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #111;
}

/* text */
.isgva-popup__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* close button */
.isgva-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;
    background: #f2f2f2;

    font-size: 20px;
    line-height: 1;
    cursor: pointer;

    transition: background 0.2s ease;
}

.isgva-popup__close:hover {
    background: #e0e0e0;
}

/* success modifier (опційно) */
.isgva-popup--success .isgva-popup__title {
    color: #FFCD00;
}

/* mobile */
@media (max-width: 480px) {
    .isgva-popup__content {
        padding: 24px 20px;
    }

    .isgva-popup__title {
        font-size: 20px;
    }
}
.button-primary{
    display: inline-block;
    margin-bottom: 40px;
}