body {
  background-color: #f8f9fa;
  font-family: "Inter", sans-serif;
  color: #222;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.visual-preview img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  object-fit: cover;
}

.section-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

ul.tech-list {
  padding-left: 18px;
  list-style-type: disc;
}

ul.tech-list li {
  margin-bottom: 8px;
}

/* Buttons */
.request-access,
.confirm-btn,
.btn-action,
.btn-download,
.btn-outline {
  border: 2px solid #000;
  background: #000;
  color: #fff;
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-download:hover,
.request-access:hover,
.confirm-btn:hover,
.btn-action:hover {
  background: #fff;
  color: #000;
}

.btn-outline {
  background: transparent;
  color: #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Info Boxes */
.faq-box,
.ai-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-box:hover,
.ai-box:hover {
  background: #f2f2f2;
}
.faq-box img,
.ai-box img {
  width: 24px;
}

.modal-content {
  border-radius: 12px;
}
.modal-header {
  background: #000;
  color: #fff;
}
.btn-close {
  filter: invert(1);
}

@media (max-width: 767px) {
  .product-card {
    padding: 20px;
  }
}
