.email-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: auto;
  box-shadow: #1a1a1a 0px 4px 16px;
  border-radius: 16px;
}
@media (max-width: 576px) {
  .email-popup {
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
    max-width: 100%;
  }
}
.email-popup__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow-y: auto;
  width: 539px;
  height: 711px;
  padding: 42px;
  border-radius: 16px;
  background:  #ECF8FC;
  box-shadow: 0 0 30px 0 rgba(0, 49, 69, 0.04);
  max-height: min(100vh - 48px, 711px);
}
@media (max-width: 576px) {
  .email-popup__container {
    max-height: calc(100vh - 32px);
    max-width: calc(100vw - 32px);
  }
}
@media (min-width: 577px) and (max-width: 1281px) {
  .email-popup__container {
    max-height: calc(100vw - 32px);
    height: auto;
    width: 450px;
  }
}
.email-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #333;
  z-index: 10;
  transition: all 0.2s ease;
}
.email-popup__close:hover {
  background: #fff;
  transform: scale(1.1);
}
.email-popup__close span {
  display: block;
  line-height: 1;
}
.email-popup__step {
  display: none;
}
.email-popup__step.active {
  display: block;
}
.email-popup__step--1 .email-popup__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__image {
    height: auto;
    margin-bottom: 1rem;
  }
}
.email-popup__step--1 .email-popup__image img {
  width: auto;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__image img {
    height: auto;
    width: auto;
  }
}
.email-popup__step--1 .email-popup__content {
  padding: 0;
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__content {
    padding: 24px 20px 32px;
  }
}
.email-popup__step--1 .email-popup__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a1a1a;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__title {
    font-size: 24px;
  }
}
.email-popup__step--1 .email-popup__subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #333;
}
.email-popup__step--1 .email-popup__subtitle strong {
  color: #0066cc;
  font-weight: 600;
}
.email-popup__step--1 .email-popup__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.email-popup__step--1 .email-popup__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__benefits li {
    margin-bottom: 8px;
  }
}
.email-popup__step--1 .email-popup__benefits li:last-child {
  margin-bottom: 0;
}
.email-popup__step--1 .email-popup__benefits li .icon-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0066cc;
}
.email-popup__step--1 .email-popup__cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.email-popup__step--1 .email-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.email-popup__step--2 .email-popup__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #1a1a1a;
}
@media (max-width: 576px) {
  .email-popup__step--2 .email-popup__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.email-popup__step--2 .form-group {
  margin-bottom: 20px;
}
.email-popup__step--2 .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.email-popup__step--2 .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.email-popup__step--2 .form-group .form-control:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.email-popup__step--2 .form-group .form-check_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.email-popup__step--2 .form-group .form-check_wrapper .form-check-input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.email-popup__step--2 .form-group .form-check_wrapper .form-check-label {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}
.email-popup__step--2 .email-popup__error {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
}
.email-popup__step--2 .email-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-popup__step--2 .email-popup__submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #0096ff 0%, #0066cc 100%);
  color: #fff;
  box-shadow: 0 12px 20px rgba(0, 102, 204, 0.3);
  text-align: center;
}
.email-popup__step--2 .email-popup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-popup__step--2 .email-popup__submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.email-popup__step--2 .email-popup__submit svg {
  width: 20px;
  height: 20px;
}
.email-popup__step--2 .email-popup__note {
  text-align: center;
  font-size: 13px;
  color: #5f6c7b;
  line-height: 1.4;
}
.email-popup__step--2 .email-popup__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  color: #0b4c6a;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.email-popup__step--2 .email-popup__back-btn svg {
  width: 20px;
  height: 20px;
}
.email-popup__step--2 .email-popup__back-btn:hover {
  color: #00324b;
}
.email-popup__step--3 .email-popup__content {
  padding: 60px 40px;
  text-align: center;
}
@media (max-width: 576px) {
  .email-popup__step--3 .email-popup__content {
    padding: 48px 20px;
  }
}
.email-popup__step--3 .email-popup__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.email-popup__step--3 .email-popup__success-icon {
  margin-bottom: 24px;
  color: #10b981;
}
.email-popup__step--3 .email-popup__success-icon svg {
  width: 60px;
  height: 60px;
}
.email-popup__step--3 .email-popup__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}
@media (max-width: 576px) {
  .email-popup__step--3 .email-popup__title {
    font-size: 24px;
  }
}
.email-popup__step--3 .email-popup__message {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 400px;
}

/*# sourceMappingURL=email-popup.css.map */
