.hakkinda-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.hakkinda-article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hakkinda-header {
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4023 100%);
  border-radius: 14px;
  color: #fff;
}

.hakkinda-header h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.hakkinda-subtitle {
  font-size: 1rem;
  color: #86efac;
  margin: 0;
  line-height: 1.5;
}

.hakkinda-article section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hakkinda-article section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}

.hakkinda-article section p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.hakkinda-article section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hakkinda-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hakkinda-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 12px;
  align-items: start;
}

.hakkinda-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.hakkinda-steps li strong {
  grid-column: 2;
  font-size: 1rem;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.hakkinda-steps li p {
  grid-column: 2;
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

.hakkinda-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.hakkinda-markets li {
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  font-size: .85rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.hakkinda-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.faq-item p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .hakkinda-header h1 {
    font-size: 1.4rem;
  }
  .hakkinda-steps li {
    grid-template-columns: 30px 1fr;
  }
  .hakkinda-steps li::before {
    width: 26px;
    height: 26px;
    font-size: .75rem;
  }
}
