/* ========================================
   FOOTER CSS
   ======================================== */

/* Main Section Container */
.preit-section {
  background: radial-gradient(circle at top, #0b1220, #020617);
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
}

/* FAQ Section */

.preit-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 50px;
  text-align: center;
}

.preit-faq h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.preit-subtitle {
  font-size: 14px;
  color: rgba(148, 163, 184, 1);
  margin-bottom: 36px;
}

.preit-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: start;
}

.preit-item {
  background-color: rgba(15, 23, 42, 1);
  transition: background-color 0.5s ease;
  border-radius: 12px;
}

.preit-item.active {
  background: rgba(255, 255, 255, 1);
}

.preit-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.preit-item.active .preit-question {
  color: rgba(0, 4, 13, 1);
}

.preit-question span {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.preit-item.active .preit-question span {
  transform: rotate(180deg);
}

.preit-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.preit-item.active .preit-answer {
  max-height: 200px;
  padding: 0 20px 16px;
  color: rgba(0, 4, 13, 1);
  font-weight: 300;
}

/* Footer Links */

.preit-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 5%;
}

.preit-footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 36px;
}

.preit-footer-grid a {
  text-decoration: none;
  color: rgba(207, 223, 254, 1);
}

.preit-brand a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.preit-brand a:hover {
  opacity: 0.8;
}

.preit-brand img {
  width: 120px;
  height: 44px;
}

.preit-brand h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.preit-brand p {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(207, 223, 254, 1);
  line-height: 1.6;
}

.preit-brand address {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(207, 223, 254, 0.7);
  line-height: 1.5;
  font-style: normal;
}

.preit-brand address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.preit-footer h5 {
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 1);
}

.preit-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.preit-footer li {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* Bottom Bar */

.preit-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.preit-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.preit-bottom-links a {
  text-decoration: none;
  color: #64748b;
}

/* Responsive */

@media (max-width: 900px) {
  .preit-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preit-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .preit-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  button.preit-question {
    text-align: start;
  }
}
