/* Rehber sayfaları — ortak stiller (Next.js + static export) */
body { font-family: 'Plus Jakarta Sans', sans-serif; }
.tech-grid {
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
}
.content-body p {
  margin-bottom: 1.8em;
  line-height: 1.9;
  color: #334155;
  font-size: 1.125rem;
}
.content-body h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.content-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.content-body li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 1.05rem;
}
.content-body li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2563eb;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.content-body ol {
  counter-reset: item;
  padding-left: 0;
  margin-bottom: 2rem;
  list-style: none;
}
.content-body ol li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}
.content-body ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  background: #0f172a;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-badge {
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.03em;
}
.pro-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}
.pro-tip .flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.highlight-box {
  background: #fffbeb;
  border-left: 6px solid #f59e0b;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.comparison-table th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid #e2e8f0;
}
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}
.analogy-box {
  background: #f0f9ff;
  border-left: 5px solid #0ea5e9;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 1rem 1rem 0;
}
details summary::-webkit-details-marker { display: none; }
