.qynko-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.close-modal:hover {
  color: #333;
  transform: scale(1.1);
}
.qynko-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}
.modal-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .qynko-modal-content {
    padding: 25px;
    margin: 10% auto;
  }
  .app-preview-image {
    max-width: 250px;
  }
  .qr-code {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 576px) {
  .qynko-modal-content {
    width: 95%;
    padding: 20px;
  }
  .modal-middle h3 {
    font-size: 22px;
  }
  .value-proposition {
    font-size: 15px;
  }
  .qr-code {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 1024px) {
  .qynko-modal-content {
    width: 90%;
    margin: 10% auto;
  }
  .modal-container {
    flex-direction: column;
  }
  .qr-code {
    margin-top: 20px;
  }
  .feature-item {
    margin-left: 0;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .qynko-modal-content {
    padding: 20px;
  }
  .app-preview-image {
    max-width: 200px;
  }
  .qr-code {
    width: 150px;
    height: 150px;
  }
  .modal-middle h3 {
    font-size: 1.1rem;
  }
  .feature-item {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .app-preview-image {
    max-width: 250px;
  }
  .qr-code {
    width: 180px;
    height: 180px;
  }
  .modal-middle h3 {
    font-size: 1.3rem;
  }
  .value-proposition {
    font-size: 0.9rem;
  }
}
@media (max-width: 992px) {
  .modal-container {
    flex-direction: column;
    gap: 25px;
  }
  .modal-left,
  .modal-middle,
  .modal-right {
    width: 100%;
  }
  .qr-code {
    margin-top: 0;
  }
  .feature-item {
    justify-content: flex-start;
    margin-left: 0;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  padding: 20px;
  box-sizing: border-box;
}
.modal-content {
  display: block;
  margin: 50px auto;
  max-height: 70vh;
  max-width: 80%;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: zoom 0.3s;
}
@keyframes zoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.close:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    max-height: 60vh;
  }
  .close {
    top: 15px;
    right: 15px;
    font-size: 30px;
  }
}
@media screen and (max-width: 468px) {
  .modal-content {
    max-width: 90%;
    max-height: 60vh;
    margin-left: 35px;
  }
  .close {
    top: 10px;
    right: 10px;
    font-size: 30px;
  }
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background-color: #4caf50;
  border-radius: 50%;
  margin-right: 5px;
  font-size: 8px;
}
.pt-3 {
  padding-top: 1rem;
}
.pb-4 {
  padding-bottom: 1.5rem;
}
.qr-caption {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 1200px) {
  .modal-middle h3 {
    white-space: normal;
  }
}
.modal-middle {
  text-align: center;
}
.modal-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-preview-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}
.modal-middle h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #26028b;
}
.modal-middle p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}
.qr-code {
  width: 200px;
  height: 200px;
  margin-top: 120px;
  padding: 10px;
  border-radius: 8px;
}
.qr-code-container p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}
.value-proposition {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}
.feature-highlights {
  margin: 25px 0;
}
.feature-item {
  margin-left: 85px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}
