/* Hero */
.hero {
  padding: 140px 2rem 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
  padding: 40px 2rem 80px;
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Pricing Table */
.pricing-table {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-header {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
  padding: 1.25rem 1.5rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: var(--bg-tertiary);
}

.tier-info {
  display: flex;
  align-items: center;
}

.tier-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.volume-range {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.fee-bps {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.fee-percent {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Elite row highlight */
.pricing-row.elite-row {
  background: rgba(229, 62, 62, 0.05);
}

.pricing-row.elite-row:hover {
  background: rgba(229, 62, 62, 0.1);
}

.pricing-row.elite-row .fee-bps {
  color: var(--green);
  font-size: 1.125rem;
}

/* Exchange fees note */
.fees-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.fees-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fees-note-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.fees-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.fees-note p strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Features Grid */
.features-section {
  padding: 80px 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(102, 184, 234, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 2rem;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-tertiary);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-header, .pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .pricing-header > *:nth-child(2), .pricing-row > *:nth-child(2) {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .pricing-section, .features-section, .faq-section {
    padding: 60px 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
