.ozel-sifaris {
  position: relative;
  padding: 64px 0;
  background: #fff;
  color: #000;
  border-top: 1px solid #cecbcb;
  border-bottom: 1px solid #cecbcb;
  box-sizing: border-box;
  margin: 0 auto;
}

.ozel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ozel-head {
  text-align: center;
}

.ozel-head h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.ozel-lead {
  max-width: 820px;
  margin: 0 auto 14px;
  color: #000;
  font-size: 16px;
}

.ozel-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ozel-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #000;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  font-size: 14px;
}

/* Kartlar */
.ozel-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.ozel-card {
  flex: 1 1 260px;
  max-width: 360px;
  background: #dfdcdc;
  border: 1px solid rgba(199, 196, 196, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ozel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  border-color: #fff;
}
.ozel-card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}
.ozel-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.ozel-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #dfdcdc;
  border: 1px solid #000;
}

/* Addımlar */
.ozel-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ozel-step {
  flex: 1 1 220px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.ozel-step h4 {
  margin: 4px 0 6px;
  font-size: 16px;
}
.ozel-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* CTA düymələri */
.ozel-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.cta-btn i {
  font-size: 18px;
}
.cta-btn.primary {
  background: #000;
  color: #fff;
  box-shadow: 0 8px 18px rgba(66, 65, 66, 0.35);
}
.cta-btn.primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}
.cta-btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Mobil uyğunluq */
@media (max-width: 720px) {
  .ozel-head h2 {
    font-size: 24px;
  }
  .ozel-lead {
    font-size: 15px;
  }
}
