.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto 80px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-lime);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: fit-content;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--color-gray);
  line-height: 1.7;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-card {
  background-color: var(--color-dark-gray);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: all 0.3s;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-lime);
}

.support-card.lime {
  background-color: var(--color-lime);
  color: var(--color-black);
  border-color: var(--color-lime);
}

.support-card.lime:hover {
  button {
    border: 1px solid var(--color-white);
  }
}

.support-card.lime .btn-icon:hover {
  border: 2px solid var(--color-lime);
}

.support-card svg {
  stroke: currentColor;
}

.support-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.support-card .btn-cta {
  width: 100%;
  justify-content: center;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 15px;
  min-width: 320px;
}

.styled-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.styled-table tbody td {
  padding: 12px 16px;
  color: var(--color-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.styled-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.styled-table tbody tr:last-child td {
  border-bottom: none;
}
.styled-table .currency {
  color: var(--color-white);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}
