.smda-global-trigger {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.4);
  cursor: pointer;
  z-index: 9998;
  border: 2px solid #38bdf8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
}
.smda-global-trigger:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-color: #ffffff;
  box-shadow: 0 15px 25px rgba(245, 158, 11, 0.4);
}
.smda-global-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.smda-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.smda-popup-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.smda-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-top: 6px solid #f59e0b;
  border-bottom: 6px solid #1e3a8a;
  font-family: sans-serif;
  position: relative;
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  transform: translateY(50px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.smda-popup-wrapper.active .smda-form-card {
  transform: translateY(0) scale(1);
}

.smda-card-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.smda-card-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.smda-form-card h3 {
  margin: 0 0 8px 0;
  color: #0f172a;
  font-size: 1.8rem;
  font-weight: 800;
  padding-right: 30px;
}
.smda-form-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.smda-form-group {
  margin-bottom: 18px;
}
.smda-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smda-input {
  width: 100%;
  padding: 14px 15px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  color: #334155;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.smda-input:focus {
  outline: none;
  border-color: #1e3a8a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.smda-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.smda-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #475569;
  cursor: pointer;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  transition: all 0.2s;
}
.smda-radio-label:hover {
  border-color: #38bdf8;
  background: #f0f9ff;
}
.smda-radio-label input[type="radio"] {
  accent-color: #1e3a8a;
  width: 16px;
  height: 16px;
  margin: 0;
}
.smda-radio-label input[type="radio"]:checked + span {
  font-weight: 700;
  color: #1e3a8a;
}

.smda-input-row {
  display: flex;
  gap: 15px;
}
.smda-input-row .smda-form-group {
  flex: 1;
}

.smda-submit-btn {
  width: 100%;
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.smda-submit-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.smda-trust-badge {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 480px) {
  .smda-input-row {
    flex-direction: column;
    gap: 0;
  }
  .smda-radio-grid {
    grid-template-columns: 1fr;
  }
  .smda-form-card {
    padding: 25px 20px;
  }
}
