.section-content-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.section-content-prose p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.section-content-prose p + p {
  margin-top: 1rem;
}

.section-content-prose a {
  color: #00F0FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-content-prose a:hover {
  color: #8B5CF6;
}

.section-content-prose ul,
.section-content-prose ol {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.5em;
  margin: 1rem 0;
}

.section-content-prose li {
  margin-bottom: 0.5rem;
}

.faq-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion .accordion-content.active {
  max-height: 600px;
}

.faq-accordion .accordion-header {
  cursor: pointer;
}

.faq-accordion .accordion-header svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion .accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(0, 240, 255, 0.15);
}

.pricing-card.featured {
  border-color: rgba(0, 240, 255, 0.4);
}

.pricing-card.featured:hover {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 20px 60px -15px rgba(0, 240, 255, 0.25);
}

.about-timeline-item {
  position: relative;
  padding-left: 2rem;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00F0FF, #8B5CF6);
}

.about-timeline-item::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% - 0.5rem);
  background: rgba(255, 255, 255, 0.1);
}

.about-timeline-item:last-child::after {
  display: none;
}

.contact-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: rgba(255, 255, 255, 0.65);
  padding-left: 1.5em;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: #00F0FF;
  text-decoration: underline;
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.market-table {
  width: 100%;
  border-collapse: collapse;
}

.market-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.market-table tr:last-child td {
  border-bottom: none;
}

.newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}
