@keyframes modal-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.popup-msoft {
  width: calc(100% - 32px);
  max-width: 780px;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.popup-msoft .close_popup {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  color: #333;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-msoft .close_popup img {
  display: none;
}
.popup-msoft .close_popup svg {
  width: 14px;
  height: 14px;
  display: block;
}
.popup-msoft .close_popup:hover {
  background: #f0f0f0;
}
.popup-msoft .modal-msoft {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
}
.popup-msoft .modal-visual {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}
.popup-msoft .modal-photo-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  padding: 0;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.popup-msoft .modal-photo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #2a2a2a;
  overflow: hidden;
}
.popup-msoft .modal-photo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1, #f5b800) 0%, var(--c2, #ff8c00) 100%);
  opacity: 0.85;
}
.popup-msoft .modal-photo-tile:nth-child(1) {
  --c1: #f5b800;
  --c2: #ff7a00;
}
.popup-msoft .modal-photo-tile:nth-child(2) {
  --c1: #1e3a8a;
  --c2: #3b82f6;
}
.popup-msoft .modal-photo-tile:nth-child(3) {
  --c1: #dc2626;
  --c2: #fbbf24;
}
.popup-msoft .modal-photo-tile:nth-child(4) {
  --c1: #047857;
  --c2: #34d399;
}
.popup-msoft .modal-photo-tile:nth-child(5) {
  --c1: #7c3aed;
  --c2: #ec4899;
}
.popup-msoft .modal-photo-tile:nth-child(6) {
  --c1: #1a1a1a;
  --c2: #f5b800;
}
.popup-msoft .modal-car {
  width: 70%;
  height: auto;
  position: relative;
  z-index: 2;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.popup-msoft .modal-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.popup-msoft .modal-grid-badge {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 6px 12px;
  position: relative;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(245, 184, 0, 0.95);
  border-radius: 999px;
}
.popup-msoft .modal-grid-badge svg {
  width: 12px;
  height: 12px;
}
.popup-msoft .modal-stat-block {
  position: relative;
  z-index: 4;
  color: #fff;
}
.popup-msoft .modal-stat-label {
  margin-bottom: 4px;
  font-size: 13px;
  opacity: 0.8;
}
.popup-msoft .modal-stat-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #f5b800;
}
.popup-msoft .modal-stat-sub {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.8;
}
.popup-msoft .modal-form-side {
  padding: 28px 28px 24px;
  background: #fff;
  overflow-y: auto;
}
.popup-msoft .modal-swipe-bar {
  display: none;
}
.popup-msoft .modal-mobile-strip {
  display: none;
}
.popup-msoft .modal-mobile-stat {
  display: none;
}
.popup-msoft .modal-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #6b5400;
  background: #fff8d6;
  border-radius: 999px;
}
.popup-msoft .modal-pulse-dot {
  width: 7px;
  height: 7px;
  background: #f5b800;
  border-radius: 50%;
  animation: modal-pulse 2s infinite;
}
.popup-msoft .modal-title {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1816;
}
.popup-msoft .modal-subtitle {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}
.popup-msoft .modal-field {
  margin-bottom: 12px;
}
.popup-msoft .modal-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.popup-msoft .modal-field input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1816;
  background: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.popup-msoft .modal-field input:focus {
  outline: none;
  background: #fff;
  border-color: #f5b800;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}
.popup-msoft .modal-channels-label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.popup-msoft .modal-channels {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}
.popup-msoft .modal-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px;
  font-size: 11px;
  color: #555;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.15s;
}
.popup-msoft .modal-channel svg {
  width: 18px;
  height: 18px;
}
.popup-msoft .modal-channel:hover {
  background: #fffdf0;
  border-color: #f5b800;
}
.popup-msoft .modal-channel.active {
  font-weight: 600;
  color: #6b5400;
  background: #fff8d6;
  border-color: #f5b800;
}
.popup-msoft .modal-submit-btn {
  width: 100%;
  padding: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #1a1816;
  background: #f5b800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.1s, background 0.2s;
}
.popup-msoft .modal-submit-btn:hover {
  background: #e8ad00;
}
.popup-msoft .modal-submit-btn:active {
  transform: scale(0.98);
}
.popup-msoft .modal-footnote {
  margin-top: 12px;
  padding-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  color: #999;
  border-top: 1px solid #f0f0f0;
}
.popup-msoft .modal-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.popup-msoft .modal-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}
.popup-msoft .modal-trust-item svg {
  width: 14px;
  height: 14px;
  color: #f5b800;
}
.popup-msoft .modal-trust-divider {
  width: 1px;
  height: 12px;
  background: #e0e0e0;
}
.popup-msoft .privacy-check {
  margin-top: 12px;
}
.popup-msoft .privacy-check input[type=checkbox] {
  width: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  accent-color: #f5b800;
  cursor: pointer;
}
.popup-msoft .privacy-check input[type=checkbox]:focus {
  box-shadow: none;
}
@media (max-width: 1024px) {
  .popup-msoft {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  }
  .popup-msoft .modal-msoft {
    grid-template-columns: 1fr;
  }
  .popup-msoft .modal-visual {
    display: none;
  }
  .popup-msoft .modal-form-side {
    max-height: 92vh;
    padding: 0 18px 22px;
    overflow-y: auto;
  }
  .popup-msoft .modal-swipe-bar {
    width: 38px;
    height: 4px;
    display: block;
    margin: 12px auto 14px;
    background: #d0d0d0;
    border-radius: 2px;
  }
  .popup-msoft .modal-mobile-strip {
    height: 72px;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
  }
  .popup-msoft .modal-mobile-strip .modal-mobile-tile {
    position: relative;
  }
  .popup-msoft .modal-mobile-strip .modal-mobile-tile:nth-child(1)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5b800, #ff7a00);
  }
  .popup-msoft .modal-mobile-strip .modal-mobile-tile:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  }
  .popup-msoft .modal-mobile-strip .modal-mobile-tile:nth-child(3)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
  }
  .popup-msoft .modal-mobile-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
  }
  .popup-msoft .modal-mobile-stat-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #f5b800;
  }
  .popup-msoft .modal-mobile-stat-text {
    font-size: 11px;
    line-height: 1.3;
    color: #555;
  }
  .popup-msoft .modal-top-badge {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 11px;
  }
  .popup-msoft .modal-title {
    margin-bottom: 4px;
    font-size: 18px;
  }
  .popup-msoft .modal-subtitle {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .popup-msoft .modal-field {
    margin-bottom: 10px;
  }
  .popup-msoft .modal-field input {
    padding: 11px 12px;
  }
  .popup-msoft .modal-channels {
    gap: 5px;
    margin-bottom: 14px;
  }
  .popup-msoft .modal-channel {
    padding: 7px 2px;
    font-size: 10px;
  }
  .popup-msoft .modal-channel svg {
    width: 16px;
    height: 16px;
  }
  .popup-msoft .modal-submit-btn {
    padding: 13px;
    font-size: 14px;
  }
  .popup-msoft .modal-trust-row {
    gap: 8px;
    margin-top: 10px;
  }
  .popup-msoft .modal-trust-item {
    font-size: 11px;
  }
  .popup-msoft .close_popup {
    width: 28px;
    height: 28px;
    top: 10px;
    right: 14px;
    background: #f4f4f4;
  }
  .popup-msoft .close_popup svg {
    width: 12px;
    height: 12px;
  }
}/*# sourceMappingURL=modal-msoft.css.map */