/* ===== Toast ===== */
.interest-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 340px;
  max-width: calc(100vw - 16px);
  background: #fff;
  color: #0f1117;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(3, 105, 161, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 16px 18px;
  z-index: 10010;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.interest-toast--enter { opacity: 1; transform: translateY(0); }
.interest-toast--leave { opacity: 0; transform: translateY(20px); }

.interest-toast__body { padding-right: 28px; }

.interest-toast__title {
  font-size: 15px;
  font-weight: 800;
  color: #0c4a6e;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.interest-toast__text {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.interest-toast__cta {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 18px;
  color: #0ea5e9;
  font-weight: 700;
}

.interest-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #94a3b8;
}
.interest-toast__close:hover { color: #0f1117; }

@media (max-width: 600px) {
  .interest-toast {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
  }
}

/* ===== Dialog ===== */
.interest-dialog {
  border: none;
  padding: 0;
  background: #fff;
  color: #0f1117;
  max-width: 460px;
  width: calc(100vw - 32px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  inset: 0;
  margin: auto;
}
.interest-dialog::backdrop { background: rgba(15, 17, 23, 0.55); }

.interest-dialog__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #555;
}
.interest-dialog__close:hover { color: #000; }

.interest-dialog__body { padding: 36px 32px 28px; }

.interest-dialog__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: #0c4a6e;
}

.interest-dialog__lead {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.interest-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interest-dialog__field { display: block; }

.interest-dialog__input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.interest-dialog__input:focus {
  border-color: #0ea5e9;
  background: #fff;
}

.interest-dialog__details { margin-top: 4px; }

.interest-dialog__summary {
  font-size: 13px;
  color: #0ea5e9;
  cursor: pointer;
  padding: 6px 0;
  list-style: none;
  user-select: none;
}
.interest-dialog__summary::-webkit-details-marker { display: none; }
.interest-dialog__summary::before {
  content: '▸ ';
  display: inline-block;
}
.interest-dialog__details[open] .interest-dialog__summary::before { content: '▾ '; }

.interest-dialog__error {
  margin: 4px 4px 0;
  font-size: 12px;
  color: #dc2626;
}

.interest-dialog__submit {
  margin-top: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.interest-dialog__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

.interest-dialog__disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

.interest-dialog__thanks {
  text-align: center;
  padding-top: 48px;
}
