/* ── WhatsApp Lead Modal — Atlas Corporate ── */

.wpp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wppFadeIn .25s ease;
}
.wpp-overlay.open { display: flex; }

@keyframes wppFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wpp-card {
  background: #111111;
  border: 1px solid rgba(196,146,58,.28);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  padding: 42px 38px 34px;
  position: relative;
  box-shadow: 0 48px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(196,146,58,.1) inset;
  animation: wppSlideUp .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes wppSlideUp {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wpp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 18px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.wpp-close:hover { color: #fff; background: rgba(255,255,255,.1); }

.wpp-logo {
  height: 34px;
  margin-bottom: 22px;
  display: block;
}

.wpp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px;
}

.wpp-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 28px;
  line-height: 1.55;
}

.wpp-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #C4923A, transparent);
  margin-bottom: 26px;
  border: none;
}

.wpp-field {
  margin-bottom: 13px;
}

.wpp-field input {
  width: 100%;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(196,146,58,.2);
  border-radius: 9px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .25s, background .25s;
  box-sizing: border-box;
}
.wpp-field input::placeholder { color: rgba(255,255,255,.32); }
.wpp-field input:focus {
  border-color: #C4923A;
  background: rgba(196,146,58,.06);
}

.wpp-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: all .25s;
}
.wpp-btn:hover:not(:disabled) {
  background: #1fbd5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37,211,102,.32);
}
.wpp-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.wpp-legal {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.5;
}
.wpp-legal a {
  color: rgba(196,146,58,.65);
  text-decoration: none;
}
.wpp-legal a:hover { color: #C4923A; }

@media (max-width: 480px) {
  .wpp-card { padding: 32px 24px 28px; }
  .wpp-title { font-size: 1.5rem; }
}
